corn/src/kmain.c
2024-01-27 02:18:08 -05:00

7 lines
77 B
C

void kmain() {
*(char*)0xB8000 = 'c';
while(1) {
__asm("cli; hlt");
}
}