kernel_entry.asm 185 B

1234
  1. [bits 32]
  2. [extern main] ; Define calling point. Must haveSame 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 $