From b39f7a0657b8147d6a58a0222a61bfb0f9e2b061 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Wed, 11 Feb 2015 21:42:22 -0500 Subject: Stuff --- boot/head.S | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'boot') 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 -- cgit v1.1