diff options
author | YamaArashi <shadow962@live.com> | 2015-07-23 20:48:35 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-07-23 20:48:35 -0700 |
commit | 323895af6dada7e1949ff79855970f75ad4b65b2 (patch) | |
tree | 366f81f3c62b0b8d8bf73507a7c9ce2ff8e8a562 /hram.asm | |
parent | 04a6c306dce136873fd33d27aa3d5b90d9eeba5a (diff) |
fixed hram aliases and named wram var
Diffstat (limited to 'hram.asm')
-rw-r--r-- | hram.asm | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -4,6 +4,7 @@ hSoftReset EQU $FF8A ; presses the reset sequence (A+B+SEL+START). ; Soft reset when 0 is reached. +; base tile ID to which offsets are added hBaseTileID EQU $FF8B ; 3-byte BCD number @@ -23,6 +24,8 @@ hEastWestConnectedMapWidth EQU $FF8B hSlideAmount EQU $FF8B +hRLEByteValue EQU $FF8B + H_SPRITEWIDTH EQU $FF8B ; in tiles H_SPRITEINTERLACECOUNTER EQU $FF8B H_SPRITEHEIGHT EQU $FF8C ; in tiles @@ -261,6 +264,9 @@ H_CURRENTSPRITEOFFSET EQU $FFDA ; multiple of $10 hVendingMachineItem EQU $FFDB hVendingMachinePrice EQU $FFDC ; 3-byte BCD number +; the first tile ID in a sequence of tile IDs that increase by 1 each step +hStartTileID EQU $FFE1 + hNewPartyLength EQU $FFE4 hDividend2 EQU $FFE5 |