aboutsummaryrefslogtreecommitdiff
path: root/src/user/init.c
blob: 00f1b28f26107d4db5991cf6a61f8c665fbcd0bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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(;;);
}