summaryrefslogtreecommitdiff
path: root/src/kernel/arch/i386/boot.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/arch/i386/boot.s')
-rw-r--r--src/kernel/arch/i386/boot.s2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/arch/i386/boot.s b/src/kernel/arch/i386/boot.s
index 74de9b7..e6eb26f 100644
--- a/src/kernel/arch/i386/boot.s
+++ b/src/kernel/arch/i386/boot.s
@@ -2,7 +2,7 @@
.global _start
.type _start, @function
_start:
- mov $stack_top, %esp
+ mov $_bss_end, %esp // the stack is at the top of bss
push %ebx // address of the Multiboot struct
call kmain_early