From f5b995586e28f7db426f4707a4348dc067df41c0 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 15 Feb 2020 16:57:57 +0100 Subject: Quite many improvements ok. --- src/userspace/main.c | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) (limited to 'src/userspace/main.c') diff --git a/src/userspace/main.c b/src/userspace/main.c index c2307a8..da9ee5b 100644 --- a/src/userspace/main.c +++ b/src/userspace/main.c @@ -1,5 +1,4 @@ #include -#include #include int32_t starts_with(const char *a, const char *b) @@ -9,18 +8,12 @@ int32_t starts_with(const char *a, const char *b) return length_main < length_pre ? 0 : memcmp(b, a, length_pre) == 0; } -void user_main() +void main() { - char text[] = "> Successfully switched to usermode!\n"; - printf(text); + // As char[]: 0xC105BFD6 + // As const char *: 0x8048B20 - // TODO: PLEASE - printf("If this message shows up, I'll be happy.\n"); - - while (1) { - char *input = readline(); - if (starts_with(input, "ls")) { - printf(text); - } - }; + char test[] = "banane"; + syscall_write(test); + syscall_halt(); } \ No newline at end of file -- cgit v1.2.3