aboutsummaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
Diffstat (limited to 'boot')
-rw-r--r--boot/head.S5
1 files changed, 2 insertions, 3 deletions
diff --git a/boot/head.S b/boot/head.S
index f8e5a36..42b1e69 100644
--- a/boot/head.S
+++ b/boot/head.S
@@ -13,8 +13,8 @@ multiboot_header:
.section .stack
stack_bottom: # Stack grows up in addresses, so bottom is
- # lower than the top
- .skip 16384 # 32KB stack
+ # lower in memory than the top
+ .skip 16384 # 16KB stack
stack_top:
.section .text
@@ -30,4 +30,3 @@ _start:
hlt
.Lhang: # Idle
jmp .Lhang
- .size _start, . - _start