diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2016-08-18 13:59:41 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2016-08-18 13:59:41 -0400 |
commit | d18c1d4fab8f2c73a82ff2d162ac9f3a1e00ddc4 (patch) | |
tree | 241a301caf510dab675856a330c6c704171f75eb /asm/macros/contest_ai_script.s | |
parent | 776ca47287ae5944bfe94568fa27907c052e310c (diff) |
dissassemble 9D contest AI bin
Diffstat (limited to 'asm/macros/contest_ai_script.s')
-rwxr-xr-x | asm/macros/contest_ai_script.s | 59 |
1 files changed, 51 insertions, 8 deletions
diff --git a/asm/macros/contest_ai_script.s b/asm/macros/contest_ai_script.s index da274767e..9da6a260c 100755 --- a/asm/macros/contest_ai_script.s +++ b/asm/macros/contest_ai_script.s @@ -20,8 +20,19 @@ @ 06 @ 07 @ 08 -@ 09 -@ 0A + + .macro contest_09 param addr + .byte 0x09 + .byte \param + .4byte \addr + .endm + + .macro contest_0A param addr + .byte 0x0A + .byte \param + .4byte \addr + .endm + @ 0B @ 0C @ 0D @@ -32,7 +43,12 @@ .4byte \addr .endm -@ 0F + .macro contest_0F param addr + .byte 0x0F + .byte \param + .4byte \addr + .endm + @ 10 @ 11 @ 12 @@ -58,9 +74,21 @@ @ 21 @ 22 -@ 23 + + .macro contest_23 param addr + .byte 0x23 + .byte \param + .4byte \addr + .endm + @ 24 -@ 25 + + .macro contest_25 param addr + .byte 0x25 + .byte \param + .4byte \addr + .endm + @ 26 @ 27 @@ -70,7 +98,12 @@ .4byte \addr .endm -@ 29 + .macro contest_29 param addr + .byte 0x29 + .byte \param + .4byte \addr + .endm + @ 2A @ 2B @ 2C @@ -90,7 +123,12 @@ @ 3A @ 3B @ 3C -@ 3D + + .macro contest_3D param addr + .byte 0x3D + .byte \param + .4byte \addr + .endm .macro contest_3E param addr .byte 0x3E @@ -200,7 +238,12 @@ .endm @ 82 -@ 83 + + .macro contest_83 addr + .byte 0x83 + .4byte \addr + .endm + @ 84 @ 85 @ 86 |