aboutsummaryrefslogtreecommitdiff
path: root/src/kern/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kern/main.c')
-rw-r--r--src/kern/main.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/src/kern/main.c b/src/kern/main.c
index 3af8beb..4fddb0a 100644
--- a/src/kern/main.c
+++ b/src/kern/main.c
@@ -35,19 +35,7 @@ void configure_mpu()
int main()
{
configure_mpu();
-
- klogf("Outside of usermode, I can still log stuff using klogf()\n");
-
- enter_user_mode();
-
- logs("Now that I'm in user mode, I have to log stuff using a system call\n");
- logs(
- "because I no longer have direct accss to USART2 and cannot use\n"
- "klogf()\n");
-
-
- for (;;)
- ;
+ jump_to_user_mode();
}
#endif