summaryrefslogtreecommitdiffstats
path: root/kernel/boot.s
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/boot.s')
-rw-r--r--kernel/boot.s16
1 files changed, 0 insertions, 16 deletions
diff --git a/kernel/boot.s b/kernel/boot.s
deleted file mode 100644
index 11175af..0000000
--- a/kernel/boot.s
+++ /dev/null
@@ -1,16 +0,0 @@
-section .text
-extern main, _estack, _init
-global _start:function
-_start:
- ; Stack setup
- mov eax, _estack
- ; Align stack to odd address
- and eax, 0xFFFFFFFE
- mov esp, eax
-
- call _init
- call main
- cli
-.hang: hlt
- jmp .hang
-; .end: