From 5f8b5ce7efb7738eaebad43f9648975788ae19ff Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 28 Apr 2020 20:59:57 +0200 Subject: Fixed userspace entering... Many other fixes too, but I won't mention them because I don't want to :) --- src/kernel/lib/stdio/putch.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/kernel/lib/stdio/putch.c (limited to 'src/kernel/lib/stdio/putch.c') diff --git a/src/kernel/lib/stdio/putch.c b/src/kernel/lib/stdio/putch.c new file mode 100644 index 0000000..f7e0248 --- /dev/null +++ b/src/kernel/lib/stdio/putch.c @@ -0,0 +1,6 @@ +#include + +void putch(char c) +{ + vesa_draw_char(c); +} \ No newline at end of file -- cgit v1.2.3