summaryrefslogtreecommitdiff
path: root/boot2/kernel_entry.asm
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-14 13:11:32 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-14 13:11:32 +0100
commitef7a34fa88cf53d53f88e5e466d76c48467d95fa (patch)
tree948479c77ebbc20b9d4e25abaee43c5a7e264ee1 /boot2/kernel_entry.asm
parent90620094420a74ef43d89f520abcc1eb55db519b (diff)
further cleanup of build sys
Diffstat (limited to 'boot2/kernel_entry.asm')
-rw-r--r--boot2/kernel_entry.asm20
1 files changed, 0 insertions, 20 deletions
diff --git a/boot2/kernel_entry.asm b/boot2/kernel_entry.asm
deleted file mode 100644
index 53f63ad..0000000
--- a/boot2/kernel_entry.asm
+++ /dev/null
@@ -1,20 +0,0 @@
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;;;;; 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