summaryrefslogtreecommitdiff
path: root/wram.asm
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2017-05-01 11:15:39 -0400
committeryenatch <yenatch@gmail.com>2017-05-01 11:15:39 -0400
commit832c28eaea1efa8c64765da88ffce661da9426a8 (patch)
tree0d6bacc263c8012d989602437ceaac06a6f31498 /wram.asm
parentc4e51522cc09424fa7f97c4e1f3f81b0cbc00089 (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-xwram.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/wram.asm b/wram.asm
index 1bcef26b..cc2d332a 100755
--- a/wram.asm
+++ b/wram.asm
@@ -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"