summaryrefslogtreecommitdiff
path: root/kc/core/kstdio.c
diff options
context:
space:
mode:
authorAda Christine <adachristine18@gmail.com>2023-01-31 03:04:27 +0000
committerAda Christine <adachristine18@gmail.com>2023-01-31 03:04:27 +0000
commit33bb4b34ed029fb10bd42b14472fd08cde2a181c (patch)
tree5ceda6e7ec8e1c15f6edb8f36c33bdb701d4ec48 /kc/core/kstdio.c
parent5d12eae3d61c91735f09cc1956732629190d6f13 (diff)
basic text console video
Diffstat (limited to 'kc/core/kstdio.c')
-rw-r--r--kc/core/kstdio.c2
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);
}