From 33bb4b34ed029fb10bd42b14472fd08cde2a181c Mon Sep 17 00:00:00 2001 From: Ada Christine Date: Tue, 31 Jan 2023 03:04:27 +0000 Subject: basic text console video --- kc/core/kstdio.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'kc/core/kstdio.c') 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 #include @@ -11,6 +12,7 @@ FILE *kstdout; int kfputc(int c, FILE *f) { (void)f; + video_putchar(c); return serial_putchar(c); } -- cgit v1.3.1-1-g115d