summaryrefslogtreecommitdiff
path: root/src/kmain.c
blob: b9ceb7704e3b124bbab920887a155aab10e057e7 (plain)
1
2
3
4
5
6
7
void kmain() {
	*(char*)0xB8000 = 'c';
	*(char*)(0xB8002 + 0x20'0000) = 'd';
	while(1) {
		__asm("cli; hlt");
	}
}