diff options
author | Aroymart <andrewrmartinek@gmail.com> | 2020-12-06 20:55:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-06 20:55:10 -0500 |
commit | db90dae74cc91f53e9ec815531572bdd295efacc (patch) | |
tree | 7f5038ab342e9160a25e17a0e55d1b96efd2d920 /src/macros/wram.asm | |
parent | 66a5ec1006d54e0e48d544bc0514fba169d47954 (diff) | |
parent | 93df19eba83c7f18cb7a0960045ad269391b8bbe (diff) |
Merge pull request #70 from anmart/master
Uncover Sprite system from MapDataPointers
Diffstat (limited to 'src/macros/wram.asm')
-rw-r--r-- | src/macros/wram.asm | 30 |
1 files changed, 13 insertions, 17 deletions
diff --git a/src/macros/wram.asm b/src/macros/wram.asm index c8b9a88..8545972 100644 --- a/src/macros/wram.asm +++ b/src/macros/wram.asm @@ -46,24 +46,20 @@ text_header: MACRO \1RomBank:: ds 1 ENDM -; TODO: Figure out what the rest are for sprite_anim_struct: MACRO -\1Field0x00:: ds 1 -\1Field0x01:: ds 1 ; movement handling / palette -\1CoordX:: ds 1 -\1CoordY:: ds 1 -\1TileID:: ds 1 -\1Field0x05:: ds 1 -\1Field0x06:: ds 1 -\1Field0x07:: ds 1 -\1Field0x08:: ds 1 -\1Field0x09:: ds 1 -\1Field0x0a:: ds 1 -\1Field0x0b:: ds 1 -\1Field0x0c:: ds 1 -\1Field0x0d:: ds 1 -\1MovementCounter:: ds 1 -\1Field0x0f:: ds 1 +\1Enabled:: ds 1 +\1Attributes:: ds 1 +\1CoordX:: ds 1 +\1CoordY:: ds 1 +\1TileID:: ds 1 +\1ID:: ds 1 +\1Bank:: ds 1 +\1Pointer:: ds 2 +\1FrameOffsetPointer:: ds 2 +\1FrameBank:: ds 1 +\1FrameDataPointer:: ds 2 +\1Counter:: ds 1 +\1Flags:: ds 1 ENDM loaded_npc_struct: MACRO |