diff options
author | AntonioND <antonio_nd@outlook.com> | 2017-03-14 20:52:58 +0000 |
---|---|---|
committer | AntonioND <antonio_nd@outlook.com> | 2017-03-14 21:45:45 +0000 |
commit | cec6e6e2fb7886acc85200f921d3913fd2ea8a2b (patch) | |
tree | 0a2dc392caea51aa4ec6c94bb3451e54a7232502 /sram.asm | |
parent | f40c979a6cab4904219c6b145ba9549c5a56108d (diff) |
Fix floating sections
This is needed to prevent rgblink from moving them around in future
releases.
Signed-off-by: AntonioND <antonio_nd@outlook.com>
Diffstat (limited to 'sram.asm')
-rw-r--r-- | sram.asm | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -SECTION "Sprite Buffers", SRAM, BANK[0] +SECTION "Sprite Buffers", SRAM[$a000], BANK[0] sSpriteBuffer0:: ds SPRITEBUFFERSIZE ; a000 sSpriteBuffer1:: ds SPRITEBUFFERSIZE ; a188 @@ -9,7 +9,7 @@ sSpriteBuffer2:: ds SPRITEBUFFERSIZE ; a310 sHallOfFame:: ds HOF_TEAM * HOF_TEAM_CAPACITY ; a598 -SECTION "Save Data", SRAM, BANK[1] +SECTION "Save Data", SRAM[$a000], BANK[1] ds $598 sPlayerName:: ds NAME_LENGTH ; a598 @@ -21,7 +21,7 @@ sTilesetType:: ds 1 ; b522 sMainDataCheckSum:: ds 1 ; b523 -SECTION "Saved Boxes 1", SRAM, BANK[2] +SECTION "Saved Boxes 1", SRAM[$a000], BANK[2] sBox1:: ds wBoxDataEnd - wBoxDataStart ; a000 sBox2:: ds wBoxDataEnd - wBoxDataStart ; a462 @@ -33,7 +33,7 @@ sBank2AllBoxesChecksum:: ds 1 ; ba4c sBank2IndividualBoxChecksums:: ds 6 ; ba4d -SECTION "Saved Boxes 2", SRAM, BANK[3] +SECTION "Saved Boxes 2", SRAM[$a000], BANK[3] sBox7:: ds wBoxDataEnd - wBoxDataStart ; a000 sBox8:: ds wBoxDataEnd - wBoxDataStart ; a462 |