summaryrefslogtreecommitdiff
path: root/boot/kernel_entry.asm
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-07-08 17:15:01 +0200
committerMichal Idziorek <m.i@gmx.at>2014-07-08 17:15:01 +0200
commitbf67de78c26c6f6e585f11899591f61da5a2c3d8 (patch)
tree6c5b51d3746aad55d2aef5c15f3771518244dc37 /boot/kernel_entry.asm
parent900781f1985bb814aa7992022aead985fc967611 (diff)
added some comments and cleaned up the .asm files
Diffstat (limited to 'boot/kernel_entry.asm')
-rw-r--r--boot/kernel_entry.asm15
1 files changed, 8 insertions, 7 deletions
diff --git a/boot/kernel_entry.asm b/boot/kernel_entry.asm
index 77bb2a5..f1e3b6b 100644
--- a/boot/kernel_entry.asm
+++ b/boot/kernel_entry.asm
@@ -1,10 +1,11 @@
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;; Miguel's FoolOS Helper Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;
+; this will be compiled to an object file and linked with the kernel
+; to simplify the entrance!
+;
+;
[bits 32]
-
[extern kernel_main]
-[extern int0]
-
call kernel_main ; jumps in the world of C
-call int0 ; jumps in the world of C
-ret
-
-jmp $