aboutsummaryrefslogtreecommitdiff
path: root/boot/head.S
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2015-02-03 18:23:04 -0500
committerFranklin Wei <frankhwei536@gmail.com>2015-02-03 18:23:04 -0500
commite065a7048aa98d253cdcc9298c934bb7af7feaa9 (patch)
tree99768597eda705f9ea1947c96c899a74e3bdc97c /boot/head.S
parentc8a195e1eb19d346c03c1dfa6ed66c6215caefa2 (diff)
downloadkappa-e065a7048aa98d253cdcc9298c934bb7af7feaa9.zip
kappa-e065a7048aa98d253cdcc9298c934bb7af7feaa9.tar.gz
kappa-e065a7048aa98d253cdcc9298c934bb7af7feaa9.tar.bz2
kappa-e065a7048aa98d253cdcc9298c934bb7af7feaa9.tar.xz
some work
Diffstat (limited to 'boot/head.S')
-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