aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/main.c
blob: 5df961f207b4f161b4afb99887ce2bbecdd57024 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void write(const char *str, int len)
{
    int ret;
    asm volatile ("push %%ebx; movl %2,%%ebx; int $0x80; pop %%ebx" \
                : "=a" (ret) \
                : "0" (1), "b" ((int) (str)), "c"((int) (len)));
}

void user_main()
{
    const char hello[] = "Switched to usermode!\n";
    write(hello, sizeof(hello));

    while (1) {};
}