diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-11-19 13:50:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 13:50:07 -0600 |
commit | 90430e6dee9e207dc0b618d07566f83617343f60 (patch) | |
tree | a7bb211dbc174b5ad9a9866ca163f4bd00c5341e /sram.asm | |
parent | f386dea5d8cb816f3cbc941e81e8acdaae710a99 (diff) | |
parent | c43bd68f01b794f61025ac2e63c9e043634ffdc8 (diff) |
Merge pull request #193 from luckytyphlosion/master
Fix spritestatedata macros and clean up pre-linkerscript remnants.
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 ; 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 ; 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 ; 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 ; BANK 3 sBox7:: ds wBoxDataEnd - wBoxDataStart ; a000 sBox8:: ds wBoxDataEnd - wBoxDataStart ; a462 |