5 lines
192 B
NASM
Executable File
5 lines
192 B
NASM
Executable File
[bits 32]
|
|
[extern _start] ; Define calling point. Must have same name as kernel.c '_start' function
|
|
call _start ; Calls the C function. The linker will know where it is placed in memory
|
|
jmp $
|