aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r--src/userspace/main.c19
1 files changed, 6 insertions, 13 deletions
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 <syscall.h>
-#include <mlibc/stdio.h>
#include <mlibc/stdlib.h>
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