diff options
author | Marvin Borner | 2019-12-17 21:50:02 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-17 21:50:02 +0100 |
commit | 025709e8643eb24e3360e575564b34ebd8062fd7 (patch) | |
tree | 16e45f68a958419a3e497e7b01e6472e92ffe94c /src/userspace/main.c | |
parent | 6188eed3863e6087a7d5b7d988e91d711b45064b (diff) |
Finally fixed text input syscalls!
I guess I can officially call me dumb now as I just forgot
to return the actual value from the syscall handler...
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r-- | src/userspace/main.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c index 9341bd0..0bea7fa 100644 --- a/src/userspace/main.c +++ b/src/userspace/main.c @@ -1,18 +1,16 @@ #include <syscall.h> #include <graphics/graphics.h> +#include <mlibc/stdio.h> void user_main() { char hello[] = "> Successfully switched to usermode!\n"; syscall_write(hello); - init_framebuffer(); + // init_framebuffer(); - while (1) {}; - - /*while (1) { - char *key = malloc(1); - syscall_readc(key); - syscall_writec(key); - };*/ + while (1) { + char key = getch(); + writec(key); + }; }
\ No newline at end of file |