32bit_kernel/app/hello_world.c

11 lines
136 B
C

#include <syscall.h>
static char s[] = "Hello from userland!\n";
int main(void)
{
write(1, s, 21);
while (1);
return 0;
}