From 969b43d443090da42a4d0d73129298f6b6d69d5a Mon Sep 17 00:00:00 2001 From: dannye <33dannye@gmail.com> Date: Sat, 17 Aug 2019 14:40:34 -0500 Subject: Update labels to match new audio macro names and synchronize engine_2 and engine_3 with engine_1 --- macros/audio_macros.asm | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'macros') diff --git a/macros/audio_macros.asm b/macros/audio_macros.asm index a4cd6c3b..a2282445 100755 --- a/macros/audio_macros.asm +++ b/macros/audio_macros.asm @@ -86,6 +86,14 @@ dnote: MACRO db \1 ENDM +;format: instrument [1, 3-10], length (in 16ths) +; like dnote but one 1 byte instead of 2 +; can only be used with instruments 1-10, excluding 2 +; unused +dnote_short: MACRO + db (\1 << 4) | (\2 - 1) +ENDM + ;format: length (in 16ths) rest: MACRO db $C0 | (\1 - 1) -- cgit v1.3.1-sl0p