Files
32bit_kernel/app/hello_world.c
2023-10-11 09:38:29 +09:00

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;
}