diff --git a/README.md b/README.md index 1d68666..ac863e6 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ New features since fork - **Per instrument polyphonism**. An instrument has the possibility to have any number of voices, meaning in practice that multiple voices can reuse the same opcodes. Done, see [here](tests/test_polyphony.asm) for an - example and [here](src/opcodes/flowcontrol.asm) for the implementation. The + example and [here](src/opcodes/flowcontrol_footer.inc) for the implementation. The maximum total number of voices will be 32: you can have 32 monophonic instruments or any combination of polyphonic instruments adding up to 32. - **Any number of voices per track**. For example, a polyphonic instrument of diff --git a/src/introspection.asm b/src/introspection_footer.inc similarity index 100% rename from src/introspection.asm rename to src/introspection_footer.inc diff --git a/src/opcodes/arithmetic.asm b/src/opcodes/arithmetic_footer.inc similarity index 100% rename from src/opcodes/arithmetic.asm rename to src/opcodes/arithmetic_footer.inc diff --git a/src/opcodes/arithmetic.inc b/src/opcodes/arithmetic_header.inc similarity index 100% rename from src/opcodes/arithmetic.inc rename to src/opcodes/arithmetic_header.inc diff --git a/src/opcodes/effects.asm b/src/opcodes/effects_footer.inc similarity index 100% rename from src/opcodes/effects.asm rename to src/opcodes/effects_footer.inc diff --git a/src/opcodes/effects.inc b/src/opcodes/effects_header.inc similarity index 100% rename from src/opcodes/effects.inc rename to src/opcodes/effects_header.inc diff --git a/src/opcodes/flowcontrol.asm b/src/opcodes/flowcontrol_footer.inc similarity index 100% rename from src/opcodes/flowcontrol.asm rename to src/opcodes/flowcontrol_footer.inc diff --git a/src/opcodes/flowcontrol.inc b/src/opcodes/flowcontrol_header.inc similarity index 100% rename from src/opcodes/flowcontrol.inc rename to src/opcodes/flowcontrol_header.inc diff --git a/src/opcodes/sinks.asm b/src/opcodes/sinks_footer.inc similarity index 100% rename from src/opcodes/sinks.asm rename to src/opcodes/sinks_footer.inc diff --git a/src/opcodes/sinks.inc b/src/opcodes/sinks_header.inc similarity index 100% rename from src/opcodes/sinks.inc rename to src/opcodes/sinks_header.inc diff --git a/src/opcodes/sources.asm b/src/opcodes/sources_footer.inc similarity index 100% rename from src/opcodes/sources.asm rename to src/opcodes/sources_footer.inc diff --git a/src/opcodes/sources.inc b/src/opcodes/sources_header.inc similarity index 100% rename from src/opcodes/sources.inc rename to src/opcodes/sources_header.inc diff --git a/src/sointu.asm b/src/sointu_footer.inc similarity index 98% rename from src/sointu.asm rename to src/sointu_footer.inc index 509bd53..0a4d45a 100644 --- a/src/sointu.asm +++ b/src/sointu_footer.inc @@ -485,22 +485,22 @@ su_update_voices_skipadd: ;------------------------------------------------------------------------------- ; Include the rest of the code ;------------------------------------------------------------------------------- -%include "opcodes/arithmetic.asm" -%include "opcodes/flowcontrol.asm" -%include "opcodes/sources.asm" -%include "opcodes/sinks.asm" +%include "opcodes/arithmetic_footer.inc" +%include "opcodes/flowcontrol_footer.inc" +%include "opcodes/sources_footer.inc" +%include "opcodes/sinks_footer.inc" ; warning: at the moment effects has to be assembled after ; sources, as sources.asm defines SU_USE_WAVESHAPER ; if needed. -%include "opcodes/effects.asm" -%include "introspection.asm" +%include "opcodes/effects_footer.inc" +%include "introspection_footer.inc" %ifidn __OUTPUT_FORMAT__,win64 - %include "win64/gmdls_win64.asm" + %include "win64/gmdls_win64_footer.inc" %endif %ifidn __OUTPUT_FORMAT__,win32 - %include "win32/gmdls_win32.asm" + %include "win32/gmdls_win32_footer.inc" %endif ;------------------------------------------------------------------------------- diff --git a/src/sointu.inc b/src/sointu_header.inc similarity index 97% rename from src/sointu.inc rename to src/sointu_header.inc index e4eeac1..3a06fbe 100644 --- a/src/sointu.inc +++ b/src/sointu_header.inc @@ -88,11 +88,11 @@ section .text ; yasm throws section redeclaration warnings if strucs are defined without a plain .text section -%include "opcodes/flowcontrol.inc" -%include "opcodes/arithmetic.inc" -%include "opcodes/effects.inc" -%include "opcodes/sources.inc" -%include "opcodes/sinks.inc" +%include "opcodes/flowcontrol_header.inc" +%include "opcodes/arithmetic_header.inc" +%include "opcodes/effects_header.inc" +%include "opcodes/sources_header.inc" +%include "opcodes/sinks_header.inc" ;------------------------------------------------------------------------------- ; synth defines diff --git a/src/win32/gmdls_win32.asm b/src/win32/gmdls_win32_footer.inc similarity index 100% rename from src/win32/gmdls_win32.asm rename to src/win32/gmdls_win32_footer.inc diff --git a/src/win64/gmdls_win64.asm b/src/win64/gmdls_win64_footer.inc similarity index 100% rename from src/win64/gmdls_win64.asm rename to src/win64/gmdls_win64_footer.inc diff --git a/tests/test_add.asm b/tests/test_add.asm index bb9ed95..a28efe8 100644 --- a/tests/test_add.asm +++ b/tests/test_add.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0, @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_add_stereo.asm b/tests/test_add_stereo.asm index 8ba07a3..94fad79 100644 --- a/tests/test_add_stereo.asm +++ b/tests/test_add_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0, @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_addp.asm b/tests/test_addp.asm index c8740da..2d7b633 100644 --- a/tests/test_addp.asm +++ b/tests/test_addp.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_addp_stereo.asm b/tests/test_addp_stereo.asm index 5ad921c..511d126 100644 --- a/tests/test_addp_stereo.asm +++ b/tests/test_addp_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_aux.asm b/tests/test_aux.asm index cc74676..ba75997 100644 --- a/tests/test_aux.asm +++ b/tests/test_aux.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_aux_stereo.asm b/tests/test_aux_stereo.asm index 252146e..62a81e5 100644 --- a/tests/test_aux_stereo.asm +++ b/tests/test_aux_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -25,4 +25,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_chords.asm b/tests/test_chords.asm index ded7588..991aa53 100644 --- a/tests/test_chords.asm +++ b/tests/test_chords.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 0, 0, 68, 0, 0, 0, 66, 0, 0, 0, 69, 0, 0, 0, @@ -25,4 +25,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_clip.asm b/tests/test_clip.asm index 25f4892..e68097c 100644 --- a/tests/test_clip.asm +++ b/tests/test_clip.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_clip_stereo.asm b/tests/test_clip_stereo.asm index 09406e4..b78280b 100644 --- a/tests/test_clip_stereo.asm +++ b/tests/test_clip_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_compressor.asm b/tests/test_compressor.asm index 7df4cbc..2ca0b74 100644 --- a/tests/test_compressor.asm +++ b/tests/test_compressor.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 65, 65, 65, 65, @@ -39,4 +39,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_compressor_stereo.asm b/tests/test_compressor_stereo.asm index 2d6a390..c032cb9 100644 --- a/tests/test_compressor_stereo.asm +++ b/tests/test_compressor_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 65, 65, 65, 65, @@ -39,4 +39,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_crush.asm b/tests/test_crush.asm index 60c5b78..62549a7 100644 --- a/tests/test_crush.asm +++ b/tests/test_crush.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_crush_stereo.asm b/tests/test_crush_stereo.asm index 87f95a5..47c198d 100644 --- a/tests/test_crush_stereo.asm +++ b/tests/test_crush_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay.asm b/tests/test_delay.asm index 2e5ceb1..85ef90f 100644 --- a/tests/test_delay.asm +++ b/tests/test_delay.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -25,4 +25,4 @@ BEGIN_DELTIMES DELTIME 11025 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_dampmod.asm b/tests/test_delay_dampmod.asm index a9961e6..435c4ff 100644 --- a/tests/test_delay_dampmod.asm +++ b/tests/test_delay_dampmod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -27,4 +27,4 @@ BEGIN_DELTIMES DELTIME 11025 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_drymod.asm b/tests/test_delay_drymod.asm index 3246b08..e692ca2 100644 --- a/tests/test_delay_drymod.asm +++ b/tests/test_delay_drymod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -27,4 +27,4 @@ BEGIN_DELTIMES DELTIME 11025 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_feedbackmod.asm b/tests/test_delay_feedbackmod.asm index f50035b..89ae8bf 100644 --- a/tests/test_delay_feedbackmod.asm +++ b/tests/test_delay_feedbackmod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -27,4 +27,4 @@ BEGIN_DELTIMES DELTIME 11025 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_flanger.asm b/tests/test_delay_flanger.asm index f56a132..9425359 100644 --- a/tests/test_delay_flanger.asm +++ b/tests/test_delay_flanger.asm @@ -1,7 +1,7 @@ %define BPM 100 %define INCLUDE_DELAY_MODULATION -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -28,4 +28,4 @@ BEGIN_DELTIMES DELTIME 1000 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_notetracking.asm b/tests/test_delay_notetracking.asm index db5c76c..4f25b85 100644 --- a/tests/test_delay_notetracking.asm +++ b/tests/test_delay_notetracking.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -31,4 +31,4 @@ BEGIN_DELTIMES DELTIME 10787 END_DELTIMES -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_pregainmod.asm b/tests/test_delay_pregainmod.asm index 588e50a..5258103 100644 --- a/tests/test_delay_pregainmod.asm +++ b/tests/test_delay_pregainmod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -27,4 +27,4 @@ BEGIN_DELTIMES DELTIME 11025 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_reverb.asm b/tests/test_delay_reverb.asm index 285a293..78c4303 100644 --- a/tests/test_delay_reverb.asm +++ b/tests/test_delay_reverb.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -25,4 +25,4 @@ BEGIN_DELTIMES DELTIME 1116,1188,1276,1356,1422,1492,1556,1618 END_DELTIMES -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_delay_stereo.asm b/tests/test_delay_stereo.asm index a132901..0d60db2 100644 --- a/tests/test_delay_stereo.asm +++ b/tests/test_delay_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -26,4 +26,4 @@ BEGIN_DELTIMES DELTIME 21025 END_DELTIMES -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_distort.asm b/tests/test_distort.asm index 7e46791..3bacc0c 100644 --- a/tests/test_distort.asm +++ b/tests/test_distort.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_distort_mod.asm b/tests/test_distort_mod.asm index f9ef206..e5e30ab 100644 --- a/tests/test_distort_mod.asm +++ b/tests/test_distort_mod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_distort_stereo.asm b/tests/test_distort_stereo.asm index 0f8fcc3..b0d8d0f 100644 --- a/tests/test_distort_stereo.asm +++ b/tests/test_distort_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -18,4 +18,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_envelope.asm b/tests/test_envelope.asm index 41f247a..74b5346 100644 --- a/tests/test_envelope.asm +++ b/tests/test_envelope.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -18,4 +18,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_envelope_mod.asm b/tests/test_envelope_mod.asm index 2d94813..e4dc6cd 100644 --- a/tests/test_envelope_mod.asm +++ b/tests/test_envelope_mod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD,HLD, HLD, HLD, 0, 0, 0, 0, 0, @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_envelope_stereo.asm b/tests/test_envelope_stereo.asm index a3ed5a4..349f825 100644 --- a/tests/test_envelope_stereo.asm +++ b/tests/test_envelope_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -17,4 +17,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_band.asm b/tests/test_filter_band.asm index 5b62554..b5d23ac 100644 --- a/tests/test_filter_band.asm +++ b/tests/test_filter_band.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_freqmod.asm b/tests/test_filter_freqmod.asm index 84b9029..cb3264c 100644 --- a/tests/test_filter_freqmod.asm +++ b/tests/test_filter_freqmod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_high.asm b/tests/test_filter_high.asm index a22d4cb..765ef75 100644 --- a/tests/test_filter_high.asm +++ b/tests/test_filter_high.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_low.asm b/tests/test_filter_low.asm index bf87762..0df4438 100644 --- a/tests/test_filter_low.asm +++ b/tests/test_filter_low.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_peak.asm b/tests/test_filter_peak.asm index 6336121..5b46d0d 100644 --- a/tests/test_filter_peak.asm +++ b/tests/test_filter_peak.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_resmod.asm b/tests/test_filter_resmod.asm index 293b056..cf5791e 100644 --- a/tests/test_filter_resmod.asm +++ b/tests/test_filter_resmod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_filter_stereo.asm b/tests/test_filter_stereo.asm index 9988791..74458f9 100644 --- a/tests/test_filter_stereo.asm +++ b/tests/test_filter_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_gain.asm b/tests/test_gain.asm index 4d74961..f11c57b 100644 --- a/tests/test_gain.asm +++ b/tests/test_gain.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_gain_stereo.asm b/tests/test_gain_stereo.asm index 7049b65..2d14d03 100644 --- a/tests/test_gain_stereo.asm +++ b/tests/test_gain_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_hold.asm b/tests/test_hold.asm index 5e89ceb..dfe347e 100644 --- a/tests/test_hold.asm +++ b/tests/test_hold.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_hold_mod.asm b/tests/test_hold_mod.asm index 4fda47d..9f5e327 100644 --- a/tests/test_hold_mod.asm +++ b/tests/test_hold_mod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_hold_stereo.asm b/tests/test_hold_stereo.asm index c017f50..b66a004 100644 --- a/tests/test_hold_stereo.asm +++ b/tests/test_hold_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_in.asm b/tests/test_in.asm index 9574995..fa94f84 100644 --- a/tests/test_in.asm +++ b/tests/test_in.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_in_stereo.asm b/tests/test_in_stereo.asm index 6490f13..d54de09 100644 --- a/tests/test_in_stereo.asm +++ b/tests/test_in_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_invgain.asm b/tests/test_invgain.asm index 940c524..939cc50 100644 --- a/tests/test_invgain.asm +++ b/tests/test_invgain.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_invgain_stereo.asm b/tests/test_invgain_stereo.asm index ce9fa66..39e22cd 100644 --- a/tests/test_invgain_stereo.asm +++ b/tests/test_invgain_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_loadnote.asm b/tests/test_loadnote.asm index 9a4a391..1042681 100644 --- a/tests/test_loadnote.asm +++ b/tests/test_loadnote.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0 @@ -18,4 +18,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_loadnote_stereo.asm b/tests/test_loadnote_stereo.asm index 20a15dc..16d8bb2 100644 --- a/tests/test_loadnote_stereo.asm +++ b/tests/test_loadnote_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0 @@ -17,4 +17,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_loadval.asm b/tests/test_loadval.asm index 563d8fe..9ec94ee 100644 --- a/tests/test_loadval.asm +++ b/tests/test_loadval.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -18,4 +18,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_loadval_stereo.asm b/tests/test_loadval_stereo.asm index 1ac917f..0abbd19 100644 --- a/tests/test_loadval_stereo.asm +++ b/tests/test_loadval_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -17,4 +17,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_mul.asm b/tests/test_mul.asm index a25ac8f..7ee55e6 100644 --- a/tests/test_mul.asm +++ b/tests/test_mul.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_mul_stereo.asm b/tests/test_mul_stereo.asm index bd09819..6980724 100644 --- a/tests/test_mul_stereo.asm +++ b/tests/test_mul_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_mulp.asm b/tests/test_mulp.asm index 932a626..a736925 100644 --- a/tests/test_mulp.asm +++ b/tests/test_mulp.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_mulp_stereo.asm b/tests/test_mulp_stereo.asm index 4c7d8ba..7a6e802 100644 --- a/tests/test_mulp_stereo.asm +++ b/tests/test_mulp_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_multiple_instruments.asm b/tests/test_multiple_instruments.asm index 7e7fd7e..d78ec07 100644 --- a/tests/test_multiple_instruments.asm +++ b/tests/test_multiple_instruments.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64,HLD,HLD,HLD,HLD,HLD,HLD,HLD, 0, 0, 0,0,0,0,0,0, @@ -25,4 +25,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_noise.asm b/tests/test_noise.asm index 8fc20d6..763a5c8 100644 --- a/tests/test_noise.asm +++ b/tests/test_noise.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_noise_stereo.asm b/tests/test_noise_stereo.asm index e444f06..1abf06e 100644 --- a/tests/test_noise_stereo.asm +++ b/tests/test_noise_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_colormod.asm b/tests/test_oscillat_colormod.asm index 98e8f26..45ccafd 100644 --- a/tests/test_oscillat_colormod.asm +++ b/tests/test_oscillat_colormod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_detunemod.asm b/tests/test_oscillat_detunemod.asm index e196219..b8e64ce 100644 --- a/tests/test_oscillat_detunemod.asm +++ b/tests/test_oscillat_detunemod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_gainmod.asm b/tests/test_oscillat_gainmod.asm index dedb958..632b27c 100644 --- a/tests/test_oscillat_gainmod.asm +++ b/tests/test_oscillat_gainmod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_gate.asm b/tests/test_oscillat_gate.asm index 3edc95e..e179258 100644 --- a/tests/test_oscillat_gate.asm +++ b/tests/test_oscillat_gate.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_lfo.asm b/tests/test_oscillat_lfo.asm index 841a52e..8233891 100644 --- a/tests/test_oscillat_lfo.asm +++ b/tests/test_oscillat_lfo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_phasemod.asm b/tests/test_oscillat_phasemod.asm index c11e8c7..6401228 100644 --- a/tests/test_oscillat_phasemod.asm +++ b/tests/test_oscillat_phasemod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_pulse.asm b/tests/test_oscillat_pulse.asm index 261dcbc..cedf5b3 100644 --- a/tests/test_oscillat_pulse.asm +++ b/tests/test_oscillat_pulse.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_sample.asm b/tests/test_oscillat_sample.asm index 7f14942..dd60c71 100644 --- a/tests/test_oscillat_sample.asm +++ b/tests/test_oscillat_sample.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 0,0,0,0,0,0,0,0, @@ -39,4 +39,4 @@ BEGIN_SAMPLE_OFFSETS SAMPLE_OFFSET START(1680142),LOOPSTART(1483),LOOPLENGTH(95) ; name VIOLN70, unitynote 58 (transpose to 2), data length 1579 END_SAMPLE_OFFSETS -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_sample_stereo.asm b/tests/test_oscillat_sample_stereo.asm index 1f4f4c4..fd6f4e7 100644 --- a/tests/test_oscillat_sample_stereo.asm +++ b/tests/test_oscillat_sample_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 0,0,0,0,0,0,0,0, @@ -36,4 +36,4 @@ BEGIN_SAMPLE_OFFSETS SAMPLE_OFFSET START(1678611),LOOPSTART(1341),LOOPLENGTH(106) ; name VIOLN68, unitynote 56 (transpose to 4), data length 1448 END_SAMPLE_OFFSETS -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_shapemod.asm b/tests/test_oscillat_shapemod.asm index e19d104..7fd9272 100644 --- a/tests/test_oscillat_shapemod.asm +++ b/tests/test_oscillat_shapemod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_sine.asm b/tests/test_oscillat_sine.asm index 31b4018..3ccccb4 100644 --- a/tests/test_oscillat_sine.asm +++ b/tests/test_oscillat_sine.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_stereo.asm b/tests/test_oscillat_stereo.asm index 831bdc9..e1f41fe 100644 --- a/tests/test_oscillat_stereo.asm +++ b/tests/test_oscillat_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_transposemod.asm b/tests/test_oscillat_transposemod.asm index 206068c..852484d 100644 --- a/tests/test_oscillat_transposemod.asm +++ b/tests/test_oscillat_transposemod.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_trisaw.asm b/tests/test_oscillat_trisaw.asm index 967510a..ba3ce79 100644 --- a/tests/test_oscillat_trisaw.asm +++ b/tests/test_oscillat_trisaw.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_unison.asm b/tests/test_oscillat_unison.asm index 94b4dee..bdec2b0 100644 --- a/tests/test_oscillat_unison.asm +++ b/tests/test_oscillat_unison.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_oscillat_unison_stereo.asm b/tests/test_oscillat_unison_stereo.asm index 1e91252..eb64734 100644 --- a/tests/test_oscillat_unison_stereo.asm +++ b/tests/test_oscillat_unison_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_outaux.asm b/tests/test_outaux.asm index 4a93271..b2db10b 100644 --- a/tests/test_outaux.asm +++ b/tests/test_outaux.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_outaux_stereo.asm b/tests/test_outaux_stereo.asm index 9f59278..695d69a 100644 --- a/tests/test_outaux_stereo.asm +++ b/tests/test_outaux_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -24,4 +24,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_panning.asm b/tests/test_panning.asm index c560b00..97bf8bf 100644 --- a/tests/test_panning.asm +++ b/tests/test_panning.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -18,4 +18,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_panning_stereo.asm b/tests/test_panning_stereo.asm index cf54ec1..eab2a9b 100644 --- a/tests/test_panning_stereo.asm +++ b/tests/test_panning_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_polyphony.asm b/tests/test_polyphony.asm index 3fbeb46..527c7ed 100644 --- a/tests/test_polyphony.asm +++ b/tests/test_polyphony.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, 68, HLD, 32, HLD, HLD, HLD, 75, HLD, 78, HLD, HLD, 0, 0, 0, @@ -29,4 +29,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_pop.asm b/tests/test_pop.asm index a0c75de..d14a59a 100644 --- a/tests/test_pop.asm +++ b/tests/test_pop.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_pop_stereo.asm b/tests/test_pop_stereo.asm index 151fbc6..202b624 100644 --- a/tests/test_pop_stereo.asm +++ b/tests/test_pop_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" \ No newline at end of file +%include "../src/sointu_footer.inc" diff --git a/tests/test_push.asm b/tests/test_push.asm index 7423733..7fda88f 100644 --- a/tests/test_push.asm +++ b/tests/test_push.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -20,4 +20,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_push_stereo.asm b/tests/test_push_stereo.asm index 6be4883..24871be 100644 --- a/tests/test_push_stereo.asm +++ b/tests/test_push_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -21,4 +21,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_receive.asm b/tests/test_receive.asm index fbc19c6..fafac00 100644 --- a/tests/test_receive.asm +++ b/tests/test_receive.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_receive_stereo.asm b/tests/test_receive_stereo.asm index 34f54e7..f672f46 100644 --- a/tests/test_receive_stereo.asm +++ b/tests/test_receive_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -22,4 +22,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_send.asm b/tests/test_send.asm index 75e7bb8..73cd581 100644 --- a/tests/test_send.asm +++ b/tests/test_send.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_send_global.asm b/tests/test_send_global.asm index e96215c..557cce9 100644 --- a/tests/test_send_global.asm +++ b/tests/test_send_global.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -27,4 +27,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_send_stereo.asm b/tests/test_send_stereo.asm index 7d63033..62fbdfc 100644 --- a/tests/test_send_stereo.asm +++ b/tests/test_send_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_speed.asm b/tests/test_speed.asm index 7a0a27b..718d047 100644 --- a/tests/test_speed.asm +++ b/tests/test_speed.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" ; warning: crashes ahead. Now that the bpm could be changed and even modulated by other ; signals, there is no easy way to figure out how many ticks your song is. Either @@ -33,4 +33,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_xch.asm b/tests/test_xch.asm index 2557133..ed3727b 100644 --- a/tests/test_xch.asm +++ b/tests/test_xch.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -19,4 +19,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc" diff --git a/tests/test_xch_stereo.asm b/tests/test_xch_stereo.asm index 2fea051..6f2c947 100644 --- a/tests/test_xch_stereo.asm +++ b/tests/test_xch_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "../src/sointu.inc" +%include "../src/sointu_header.inc" BEGIN_PATTERNS PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 @@ -23,4 +23,4 @@ BEGIN_PATCH END_INSTRUMENT END_PATCH -%include "../src/sointu.asm" +%include "../src/sointu_footer.inc"