Change include path in CMake file to point to include/ instead of include/sointu/

This commit is contained in:
Veikko Sariola 2020-11-02 21:37:22 +02:00
parent e0a793ea6d
commit eb37d8123d
104 changed files with 194 additions and 194 deletions

View File

@ -33,7 +33,7 @@ set(CMAKE_ASM_NASM_COMPILE_OBJECT "<CMAKE_ASM_NASM_COMPILER> <INCLUDES> <DEFINES
# Sointu as a header-only library # Sointu as a header-only library
set(HEADERLIB sointuinterface) set(HEADERLIB sointuinterface)
add_library(${HEADERLIB} INTERFACE) add_library(${HEADERLIB} INTERFACE)
target_include_directories(${HEADERLIB} INTERFACE ${PROJECT_SOURCE_DIR}/include/sointu) target_include_directories(${HEADERLIB} INTERFACE ${PROJECT_SOURCE_DIR}/include)
# Sointu as static library # Sointu as static library
set(STATICLIB sointu) set(STATICLIB sointu)

View File

@ -488,22 +488,22 @@ su_update_voices_skipadd:
;------------------------------------------------------------------------------- ;-------------------------------------------------------------------------------
; Include the rest of the code ; Include the rest of the code
;------------------------------------------------------------------------------- ;-------------------------------------------------------------------------------
%include "opcodes/arithmetic_footer.inc" %include "sointu/arithmetic_footer.inc"
%include "opcodes/flowcontrol_footer.inc" %include "sointu/flowcontrol_footer.inc"
%include "opcodes/sources_footer.inc" %include "sointu/sources_footer.inc"
%include "opcodes/sinks_footer.inc" %include "sointu/sinks_footer.inc"
; warning: at the moment effects has to be assembled after ; warning: at the moment effects has to be assembled after
; sources, as sources.asm defines SU_USE_WAVESHAPER ; sources, as sources.asm defines SU_USE_WAVESHAPER
; if needed. ; if needed.
%include "opcodes/effects_footer.inc" %include "sointu/effects_footer.inc"
%include "introspection_footer.inc" %include "sointu/introspection_footer.inc"
%ifidn __OUTPUT_FORMAT__,win64 %ifidn __OUTPUT_FORMAT__,win64
%include "win64/gmdls_win64_footer.inc" %include "sointu/win64/gmdls_win64_footer.inc"
%endif %endif
%ifidn __OUTPUT_FORMAT__,win32 %ifidn __OUTPUT_FORMAT__,win32
%include "win32/gmdls_win32_footer.inc" %include "sointu/win32/gmdls_win32_footer.inc"
%endif %endif
;------------------------------------------------------------------------------- ;-------------------------------------------------------------------------------

View File

@ -88,11 +88,11 @@
section .text ; yasm throws section redeclaration warnings if strucs are defined without a plain .text section section .text ; yasm throws section redeclaration warnings if strucs are defined without a plain .text section
%include "opcodes/flowcontrol_header.inc" %include "sointu/flowcontrol_header.inc"
%include "opcodes/arithmetic_header.inc" %include "sointu/arithmetic_header.inc"
%include "opcodes/effects_header.inc" %include "sointu/effects_header.inc"
%include "opcodes/sources_header.inc" %include "sointu/sources_header.inc"
%include "opcodes/sinks_header.inc" %include "sointu/sinks_header.inc"
;------------------------------------------------------------------------------- ;-------------------------------------------------------------------------------
; synth defines ; synth defines

View File

@ -1,7 +1,7 @@
; source file for compiling sointu as a library ; source file for compiling sointu as a library
%define SU_DISABLE_PLAYER %define SU_DISABLE_PLAYER
%include "sointu_header.inc" %include "sointu/header.inc"
; TODO: make sure compile everything in ; TODO: make sure compile everything in
@ -21,7 +21,7 @@ USE_OUT
%define INCLUDE_POLYPHONY %define INCLUDE_POLYPHONY
%define INCLUDE_MULTIVOICE_TRACKS %define INCLUDE_MULTIVOICE_TRACKS
%include "sointu_footer.inc" %include "sointu/footer.inc"
section .text section .text

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 0, 0, 68, 0, 0, 0, 66, 0, 0, 0, 69, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 65, 65, 65, 65, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 65, 65, 65, 65, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 11025
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 11025
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 11025
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 11025
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,7 +1,7 @@
%define BPM 100 %define BPM 100
%define INCLUDE_DELAY_MODULATION %define INCLUDE_DELAY_MODULATION
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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 DELTIME 1000
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 10787
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 11025
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 1116,1188,1276,1356,1422,1492,1556,1618
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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 DELTIME 21025
END_DELTIMES END_DELTIMES
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD,HLD, HLD, HLD, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64,HLD,HLD,HLD,HLD,HLD,HLD,HLD, 0, 0, 0,0,0,0,0,0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 0,0,0,0,0,0,0,0, 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 SAMPLE_OFFSET START(1680142),LOOPSTART(1483),LOOPLENGTH(95) ; name VIOLN70, unitynote 58 (transpose to 2), data length 1579
END_SAMPLE_OFFSETS END_SAMPLE_OFFSETS
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 0,0,0,0,0,0,0,0, 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 SAMPLE_OFFSET START(1678611),LOOPSTART(1341),LOOPLENGTH(106) ; name VIOLN68, unitynote 56 (transpose to 4), data length 1448
END_SAMPLE_OFFSETS END_SAMPLE_OFFSETS
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 80, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, 0, 68, 0, 32, 0, 0, 0, 75, 0, 78, 0, 0, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, 68, HLD, 32, HLD, HLD, HLD, 75, HLD, 78, HLD, HLD, 0, 0, 0, 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,7 +1,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "sointu.h" #include <sointu/sointu.h>
#if UINTPTR_MAX == 0xffffffff // are we 32-bit? #if UINTPTR_MAX == 0xffffffff // are we 32-bit?
#if defined(__clang__) || defined(__GNUC__) #if defined(__clang__) || defined(__GNUC__)

View File

@ -2,7 +2,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <stdio.h> #include <stdio.h>
#include <sointu.h> #include <sointu/sointu.h>
#define BPM 100 #define BPM 100
#define SAMPLE_RATE 44100 #define SAMPLE_RATE 44100

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

View File

@ -1,6 +1,6 @@
%define BPM 100 %define BPM 100
%include "sointu_header.inc" %include "sointu/header.inc"
BEGIN_PATTERNS BEGIN_PATTERNS
PATTERN 64, HLD, HLD, HLD, HLD, HLD, HLD, HLD, 0, 0, 0, 0, 0, 0, 0, 0 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_INSTRUMENT
END_PATCH END_PATCH
%include "sointu_footer.inc" %include "sointu/footer.inc"

Some files were not shown because too many files have changed in this diff Show More