Fix stack size in posts (it was increased to 16kB)

This commit is contained in:
Philipp Oppermann
2017-03-25 16:23:37 +01:00
parent 531a069a6e
commit 09b5e7b136
2 changed files with 3 additions and 3 deletions

View File

@@ -1022,7 +1022,7 @@ p3_table:
p2_table:
resb 4096
stack_bottom:
resb 4096 * 2
resb 4096 * 4
stack_top:
```