summaryrefslogtreecommitdiff
path: root/src/arch/i386/boot.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/i386/boot.s')
-rw-r--r--src/arch/i386/boot.s16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/arch/i386/boot.s b/src/arch/i386/boot.s
deleted file mode 100644
index 74de9b7..0000000
--- a/src/arch/i386/boot.s
+++ /dev/null
@@ -1,16 +0,0 @@
-.section .text
-.global _start
-.type _start, @function
-_start:
- mov $stack_top, %esp
- push %ebx // address of the Multiboot struct
- call kmain_early
-
-.global halt_cpu
-.type halt_cpu, @function
-halt_cpu:
- cli
-1: hlt
- jmp 1b
-
-.size _start, . - _start