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