kernel_entry.asm 186 B

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