diff options
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r-- | src/userspace/main.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c index f7cd3ba..c85e64d 100644 --- a/src/userspace/main.c +++ b/src/userspace/main.c @@ -1,9 +1,15 @@ #include <syscall.h> +#include <mlibc/string.h> void user_main() { - const char hello[] = "> Successfully to usermode!\n"; - syscall_write(0, hello, sizeof(hello)); + char hello[] = "> Successfully switched to usermode!\n"; + syscall_write(hello); - while (1) {}; + while (1) { + char *command = (char *) syscall_read(); + char test[1024]; + strcpy(test, command); + syscall_write(command); + }; }
\ No newline at end of file |