Browse Source

Fix init kernel stack size

Kevin Lange 6 years ago
parent
commit
325e059af2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/boot.S

+ 1 - 1
kernel/boot.S

@@ -27,7 +27,7 @@
 /* .stack resides in .bss */
 .section .stack, "aw", @nobits
 stack_bottom:
-.skip 16384 /* 16KiB */
+.skip 32768 /* 32KiB */
 stack_top:
 
 .section .text