diff options
author | yenatch <yenatch@gmail.com> | 2017-05-01 11:15:39 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-05-01 11:15:39 -0400 |
commit | 832c28eaea1efa8c64765da88ffce661da9426a8 (patch) | |
tree | 0d6bacc263c8012d989602437ceaac06a6f31498 /wram.asm | |
parent | c4e51522cc09424fa7f97c4e1f3f81b0cbc00089 (diff) |
Fix the Stack section.
Negative section sizes are no longer allowed as of rgbds 0.3.0.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3220,9 +3220,9 @@ wBoxMonNicksEnd:: ; dee2 wBoxDataEnd:: -SECTION "Stack", WRAMX[$dfff], BANK[1] +SECTION "Stack", WRAMX[$df00], BANK[1] + ds $ff wStack:: ; dfff - ds -$100 INCLUDE "sram.asm" |