32bit_kernel/app/hello_world.c

11 lines
136 B
C
Raw Permalink Normal View History

2023-10-11 00:38:29 +00:00
#include <syscall.h>
static char s[] = "Hello from userland!\n";
int main(void)
{
write(1, s, 21);
while (1);
return 0;
}