cfenollosa_os-tutorial/15-video-ports/boot/kernel_entry.asm

5 lines
186 B
NASM
Raw Normal View History

2015-02-03 18:13:13 +00:00
[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 $