diff options
author | Andrew Martinek <andrewrmartinek@gmail.com> | 2019-10-06 23:00:27 -0400 |
---|---|---|
committer | Andrew Martinek <andrewrmartinek@gmail.com> | 2019-10-06 23:00:27 -0400 |
commit | a44f17b9a15cf1a572d5e8056a69c368265729f2 (patch) | |
tree | e8137a71e6c6fb2cbb56d3d58be084f3958ba39e /src/macros/wram.asm | |
parent | fda59356c20813bb57d59de8d9b2b100f0fe275d (diff) |
Fixed a few macros that were giving weird code. Updated tcgdisasm
Diffstat (limited to 'src/macros/wram.asm')
-rw-r--r-- | src/macros/wram.asm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/macros/wram.asm b/src/macros/wram.asm index ca8a9d0..415d19a 100644 --- a/src/macros/wram.asm +++ b/src/macros/wram.asm @@ -65,3 +65,18 @@ sprite_anim_struct: MACRO \1MovementCounter:: ds 1 \1Field0x0f:: ds 1 ENDM + +loaded_npc_struct: MACRO +\1ID:: ds 1 +\1Sprite:: ds 1 +\1CoordX:: ds 1 +\1CoordY:: ds 1 +\1Direction:: ds 1 +\1Field0x05:: ds 1 +\1Field0x06:: ds 1 +\1Field0x07:: ds 1 +\1Field0x08:: ds 1 +\1Field0x09:: ds 1 +\1Field0x0a:: ds 1 +\1Field0x0b:: ds 1 +ENDM |