aboutsummaryrefslogtreecommitdiff
path: root/src/boot.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/boot.s')
-rw-r--r--src/boot.s17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/boot.s b/src/boot.s
deleted file mode 100644
index 2530d18..0000000
--- a/src/boot.s
+++ /dev/null
@@ -1,17 +0,0 @@
-.global _start
-.type _start, @function
-
-.code32
-// Entry point. It puts the machine into a consistent state,
-// starts the kernel and then waits forever.
-_start:
- mov _sstack, %esp // Setup the stack.
-
- push %ebx // Pass multiboot info structure.
- push %eax // Pass multiboot magic code.
- call kmain // Call the kernel.
-
- // Halt the CPU.
- cli
- hlt
-