diff options
Diffstat (limited to 'boot')
| -rw-r--r-- | boot/head.S | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/boot/head.S b/boot/head.S index 8bd42f1..b74e929 100644 --- a/boot/head.S +++ b/boot/head.S @@ -24,19 +24,18 @@ multiboot_header: .section .stack stack_bottom: # Stack grows up in addresses, so bottom is # lower in memory than the top - .skip 16384 # 16KB stack + .skip 32768 # 32KB stack stack_top: .section .text .global _start - .type _start, @function _start: cli movl $stack_top, %esp push %eax # multiboot magic push %ebx # multiboot header call main +.Lhang: # Idle cli hlt -.Lhang: # Idle jmp .Lhang |