diff options
Diffstat (limited to 'kernel/boot/init')
-rw-r--r-- | kernel/boot/init/boot.s | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/boot/init/boot.s b/kernel/boot/init/boot.s index 35a89a2..8e0d10b 100644 --- a/kernel/boot/init/boot.s +++ b/kernel/boot/init/boot.s @@ -85,6 +85,10 @@ _start: */ movl $stack_top, %esp + /* Push Multiboot values to stack for kernel_main */ + push %eax + push %ebx + /* This is a good place to initialize crucial processor state before the high-level kernel is entered. It's best to minimize the early |