5 lines
140 B
NASM
5 lines
140 B
NASM
[bits 32]
|
|
[extern main] ; reference an external label
|
|
call main ; call the main function of our kernel
|
|
jmp $ ; hang
|