This commit is contained in:
Henny022p
2021-03-28 13:03:37 +02:00
parent 6e7674e865
commit abfcc50245
6 changed files with 4198 additions and 1529 deletions
+15
View File
@@ -0,0 +1,15 @@
.macro sound_header track_count:req block_count:req priority:req reverb:req tone:req part:req parts:vararg
.byte \track_count
.byte \block_count
.byte \priority
.byte \reverb
.4byte \tone
sound_header_recurse \part \parts
.endm
.macro sound_header_recurse part:req parts:vararg
.4byte \part
.ifnb \parts
sound_header_recurse \parts
.endif
.endm