mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2025-05-30 14:05:02 +00:00
5 lines
186 B
NASM
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 $
|