diff options
author | yenatch <yenatch@gmail.com> | 2016-09-10 19:57:41 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2016-09-10 19:57:41 -0400 |
commit | 0d21ed0fa87bae501a1c32e68bbae3574d2957e0 (patch) | |
tree | a50afc0de00a4e86d51293c9b65b661149dd1871 /asm | |
parent | 9ce874ce6d01d3e73ece41bacd99045c6f006d45 (diff) |
Dump the cry sample pointers.
todo: The samples are delta-compressed.
Diffstat (limited to 'asm')
-rw-r--r-- | asm/macros/music_voice.s | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/asm/macros/music_voice.s b/asm/macros/music_voice.s index 9a95d69f4..b7a9e7f8d 100644 --- a/asm/macros/music_voice.s +++ b/asm/macros/music_voice.s @@ -111,3 +111,15 @@ .4byte \voice_group_pointer .4byte 0 .endm + + .macro cry sample + .byte 0x20, 60, 0, 0 + .4byte \sample + .byte 0xff, 0, 0xff, 0 + .endm + + .macro cry2 sample + .byte 0x30, 60, 0, 0 + .4byte \sample + .byte 0xff, 0, 0xff, 0 + .endm |