diff options
author | Marvin Borner | 2019-12-21 22:22:03 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-21 22:22:03 +0100 |
commit | 499784a824c541001c2fd52ae95eba88dcfc952b (patch) | |
tree | c3c26d7c8a3b9291d909f4655b7d27a5ae2369bc /src/userspace/main.c | |
parent | 38610cd06dc0b5a3a4ee46f5fe7c341191aa2bc1 (diff) |
Many debugging/serial improvements
Sorry for the little information, but I did many things :)
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r-- | src/userspace/main.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/userspace/main.c b/src/userspace/main.c index 982a5ff..62bdc4e 100644 --- a/src/userspace/main.c +++ b/src/userspace/main.c @@ -1,6 +1,6 @@ #include <syscall.h> #include <mlibc/stdio.h> -#include <mlibc/string.h> +#include <mlibc/stdlib.h> int32_t starts_with(const char *a, const char *b) { @@ -11,10 +11,11 @@ int32_t starts_with(const char *a, const char *b) void user_main() { - printf("> Successfully switched to usermode!"); + char text[] = "> Successfully switched to usermode!\n"; + printf(text); // init_framebuffer(); - writec((char) strlen("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")); + // writec((char) strlen("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")); while (1) { char *input = readline(); |