aboutsummaryrefslogtreecommitdiff
path: root/src/user/init.c
blob: 113091674a46416193be5dbc468766f45c6f88c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "kern/common.h"
#include "kern/log.h"
#include "user/syscall.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 (;;)
    ;
}