diff options
| author | Ada Christine <adachristine18@gmail.com> | 2023-01-31 03:04:27 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2023-01-31 03:04:27 +0000 |
| commit | 33bb4b34ed029fb10bd42b14472fd08cde2a181c (patch) | |
| tree | 5ceda6e7ec8e1c15f6edb8f36c33bdb701d4ec48 /kc/core/kstdio.c | |
| parent | 5d12eae3d61c91735f09cc1956732629190d6f13 (diff) | |
basic text console video
Diffstat (limited to 'kc/core/kstdio.c')
| -rw-r--r-- | kc/core/kstdio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kc/core/kstdio.c b/kc/core/kstdio.c index 1d0bfa9..680eb07 100644 --- a/kc/core/kstdio.c +++ b/kc/core/kstdio.c @@ -1,4 +1,5 @@ #include "serial.h" +#include "video.h" #include <stdint.h> #include <stdbool.h> @@ -11,6 +12,7 @@ FILE *kstdout; int kfputc(int c, FILE *f) { (void)f; + video_putchar(c); return serial_putchar(c); } |
