summaryrefslogtreecommitdiff
path: root/asm/kernel_entry.asm
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-13 16:18:24 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-13 16:18:24 +0200
commit9a60edf72a3112adae4a914134da1adaf472ad5d (patch)
tree64fe18ef416160244ad7dc80875e9f5a47390971 /asm/kernel_entry.asm
parent39d0c5ad74f69ef368d6f83e4eac575e76060eb4 (diff)
fixing gdt and interrupts
Diffstat (limited to 'asm/kernel_entry.asm')
-rw-r--r--asm/kernel_entry.asm27
1 files changed, 0 insertions, 27 deletions
diff --git a/asm/kernel_entry.asm b/asm/kernel_entry.asm
deleted file mode 100644
index 71bedd1..0000000
--- a/asm/kernel_entry.asm
+++ /dev/null
@@ -1,27 +0,0 @@
-; DEPRECATED . use multiboot.s instead!
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;;;;; Miguel's FoolOS Helper Functions ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;
-; this will be compiled to an object file and linked with the kernel
-; to simplify the entrance!
-;
-;
-global kernel_start
-
-[bits 32]
-[extern kernel_main]
-
-kernel_start:
-
-push 0x1
-
-cmp eax,1
-je multiproc
-push 0x0
-multiproc:
-
-push esp
-call kernel_main ; jumps in the world of C