aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio/putch.c
diff options
context:
space:
mode:
authorMarvin Borner2020-04-28 20:59:57 +0200
committerMarvin Borner2020-04-28 20:59:57 +0200
commit5f8b5ce7efb7738eaebad43f9648975788ae19ff (patch)
treeab8fc4d4baa4adb99dc90461df689650acf34cef /src/kernel/lib/stdio/putch.c
parentbfe16de4be67565f1a1e7b1331fcbe3aedf9c54e (diff)
Fixed userspace entering...
Many other fixes too, but I won't mention them because I don't want to :)
Diffstat (limited to 'src/kernel/lib/stdio/putch.c')
-rw-r--r--src/kernel/lib/stdio/putch.c6
1 files changed, 6 insertions, 0 deletions
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 <kernel/graphics/vesa.h>
+
+void putch(char c)
+{
+ vesa_draw_char(c);
+} \ No newline at end of file