Lesson 18

This commit is contained in:
Carlos Fenollosa
2015-02-03 19:12:51 +01:00
parent 69a7c1c2a6
commit 418bb11305
17 changed files with 412 additions and 16 deletions

View File

@@ -1 +0,0 @@
../../13-kernel-barebones/kernel_entry.asm

View File

@@ -0,0 +1,4 @@
[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 $