aboutsummaryrefslogtreecommitdiff
path: root/src/user/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/init.c')
-rw-r--r--src/user/init.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/user/init.c b/src/user/init.c
new file mode 100644
index 0000000..00f1b28
--- /dev/null
+++ b/src/user/init.c
@@ -0,0 +1,11 @@
+#include "user/syscall.h"
+#include "kern/log.h"
+#include "kern/common.h"
+
+void usermode_start()
+{
+ logs("I'm in usermode!\n");
+ logs("I'm still in usermode!\n");
+ logs("I'm super still in usermode!\n");
+ for(;;);
+}