diff options
Diffstat (limited to 'src/kernel/arch/i386/boot.s')
-rw-r--r-- | src/kernel/arch/i386/boot.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/arch/i386/boot.s b/src/kernel/arch/i386/boot.s index 24c076f..743c6d6 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 $_bss_end, %esp // the stack is at the top of bss + mov $_stack_top, %esp call sysenter_setup push %ebx // address of the Multiboot struct call kmain_early |