aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
blob: 9341bd0e04101ebb09f4f345b375f510e8024a35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <syscall.h>
#include <graphics/graphics.h>

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

    init_framebuffer();

    while (1) {};

    /*while (1) {
        char *key = malloc(1);
        syscall_readc(key);
        syscall_writec(key);
    };*/
}