summaryrefslogtreecommitdiff
path: root/asm/kernel_entry.asm
diff options
context:
space:
mode:
Diffstat (limited to 'asm/kernel_entry.asm')
-rw-r--r--asm/kernel_entry.asm20
1 files changed, 20 insertions, 0 deletions
diff --git a/asm/kernel_entry.asm b/asm/kernel_entry.asm
new file mode 100644
index 0000000..53f63ad
--- /dev/null
+++ b/asm/kernel_entry.asm
@@ -0,0 +1,20 @@
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;;;;;;; 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]
+
+push 0x1
+
+cmp eax,1
+je multiproc
+push 0x0
+multiproc:
+
+push esp
+call kernel_main ; jumps in the world of C