diff --git a/CMakeLists.txt b/CMakeLists.txt index 70d348e..779ad19 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ set(CMAKE_ASM_NASM_COMPILE_OBJECT " #include #include -#include "sointu.h" +#include #if UINTPTR_MAX == 0xffffffff // are we 32-bit? #if defined(__clang__) || defined(__GNUC__) diff --git a/tests/test_render_samples_api.c b/tests/test_render_samples_api.c index 86658f7..9a5f382 100644 --- a/tests/test_render_samples_api.c +++ b/tests/test_render_samples_api.c @@ -2,7 +2,7 @@ #include #include #include -#include +#include #define BPM 100 #define SAMPLE_RATE 44100 diff --git a/tests/test_send.asm b/tests/test_send.asm index 802c1f4..49378a9 100644 --- a/tests/test_send.asm +++ b/tests/test_send.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "sointu_header.inc" +%include "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 "sointu_footer.inc" +%include "sointu/footer.inc" diff --git a/tests/test_send_global.asm b/tests/test_send_global.asm index 9c0c23d..e04fdde 100644 --- a/tests/test_send_global.asm +++ b/tests/test_send_global.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "sointu_header.inc" +%include "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 "sointu_footer.inc" +%include "sointu/footer.inc" diff --git a/tests/test_send_stereo.asm b/tests/test_send_stereo.asm index fc89f25..1ae0495 100644 --- a/tests/test_send_stereo.asm +++ b/tests/test_send_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "sointu_header.inc" +%include "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 "sointu_footer.inc" +%include "sointu/footer.inc" diff --git a/tests/test_speed.asm b/tests/test_speed.asm index 910b50d..5f88c60 100644 --- a/tests/test_speed.asm +++ b/tests/test_speed.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "sointu_header.inc" +%include "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 "sointu_footer.inc" +%include "sointu/footer.inc" diff --git a/tests/test_xch.asm b/tests/test_xch.asm index 44905ea..c8803c4 100644 --- a/tests/test_xch.asm +++ b/tests/test_xch.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "sointu_header.inc" +%include "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 "sointu_footer.inc" +%include "sointu/footer.inc" diff --git a/tests/test_xch_stereo.asm b/tests/test_xch_stereo.asm index e2ca928..b835845 100644 --- a/tests/test_xch_stereo.asm +++ b/tests/test_xch_stereo.asm @@ -1,6 +1,6 @@ %define BPM 100 -%include "sointu_header.inc" +%include "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 "sointu_footer.inc" +%include "sointu/footer.inc"