diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-28 13:22:56 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-28 14:14:29 -0400 |
commit | 10d0d5d02babaace5c2af4a2e03bb0a4762c9c38 (patch) | |
tree | 800dd879176638c94022b336c61f36115776a277 /sram.asm | |
parent | 34deb66c443af8ef7f36e24350d7f0069517ecd3 (diff) |
Fill in sprite animation index constants, other minor cleanups.
Diffstat (limited to 'sram.asm')
-rwxr-xr-x | sram.asm | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,14 +1,15 @@ SECTION "Scratch", SRAM -UNION ; a000 -sScratchTilemap:: ds BG_MAP_WIDTH * BG_MAP_HEIGHT -sScratchAttrmap:: ds $200 - -NEXTU ; a000 sScratch:: + +UNION ; a000 sDecompressScratch:: ds $188 sDecompressBuffer:: ds 7 * 7 tiles ; a188 -ENDU + +NEXTU ; a000 +sScratchTilemap:: ds BG_MAP_WIDTH * BG_MAP_HEIGHT +sScratchAttrmap:: ds $200 ; a200 +ENDU ; a498 SECTION "SRAM Bank 0", SRAM |