kernel/ramdisk/test.c

7 lines
93 B
C
Raw Normal View History

#include "nox/stdio.h"
void _start() {
printf("hello libc");
while(1) asm("hlt");
}