aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
diff options
context:
space:
mode:
authorMarvin Borner2019-12-07 13:40:28 +0100
committerMarvin Borner2019-12-07 13:40:28 +0100
commitd94b024b73aeca06de417e0fd3c502495312a8b2 (patch)
treebff5cc1b757eeed7f58878cc13551c63464c5a31 /src/userspace/main.c
parent322167ceab19588473f9074e761390fdeb701790 (diff)
Added userspace libc and began userspace based shell
Diffstat (limited to 'src/userspace/main.c')
-rw-r--r--src/userspace/main.c12
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