cfenollosa_os-tutorial/18-interrupts/boot/kernel_entry.asm
2015-02-02 12:32:46 +01: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 $