diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2018-01-11 13:51:45 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-11 13:51:45 -0600 |
commit | 2b56f43fce75871f2be993d43b483ceefd0bfc0f (patch) | |
tree | 6fefa6a95a940c731ce7e551d1bc5c00a2626db0 /include/macros/m4a.inc | |
parent | a51b95150ba86a3982f613886471626f742aeacd (diff) | |
parent | e7672a1aeb5e42d6f4e416ede9f6220122d11743 (diff) |
Merge branch 'master' into assert
Diffstat (limited to 'include/macros/m4a.inc')
-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 000000000..6c5abc09b --- /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 |