Files
os-tutorial/23-fixes/boot/kernel_entry.asm
2015-08-17 18:41:38 +02:00

5 lines
186 B
NASM

[bits 32]
[extern main] ; Define calling point. Must have same name as kernel.c 'main' function
call main ; Calls the C function. The linker will know where it is placed in memory
jmp $