diff options
author | nullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com> | 2018-11-20 19:49:35 +0800 |
---|---|---|
committer | nullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com> | 2018-11-20 19:50:34 +0800 |
commit | ff37bfefe07cdbb6e087e0123576a1b338145dce (patch) | |
tree | 046f10e408e5e4807a060249ac4f21a638d475aa /include | |
parent | c7045ae3694f677b634f3908c1ea935c2998727e (diff) |
Dump gMPlayTable and gSongTable
Diffstat (limited to 'include')
-rw-r--r-- | include/macros/m4a.inc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/macros/m4a.inc b/include/macros/m4a.inc new file mode 100644 index 0000000..6c5abc0 --- /dev/null +++ b/include/macros/m4a.inc @@ -0,0 +1,13 @@ + .macro song label, music_player, unknown + .4byte \label + .2byte \music_player + .2byte \unknown + .endm + + .macro music_player info_struct, track_struct, unknown_1, unknown_2 + .4byte \info_struct + .4byte \track_struct + .byte \unknown_1 + .space 1 + .2byte \unknown_2 + .endm |