aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
blob: f7cd3ba6365800d15e1a653cccd97853d9e24da9 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <syscall.h>

void user_main()
{
    const char hello[] = "> Successfully to usermode!\n";
    syscall_write(0, hello, sizeof(hello));

    while (1) {};
}