lesson 13, first kernel

This commit is contained in:
Carlos Fenollosa
2014-10-15 19:00:21 +02:00
parent 14f51e8246
commit 2f1378d7a3
7 changed files with 180 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
[bits 32]
[extern main] ; Define calling point. Must haveSame name as kernel.c 'main' function
call main ; Calls the C function. The linker will know where it is placed in memory
jmp $