├── .gitignore ├── LICENSE ├── README.md ├── dist ├── audioworker.js ├── audioworklet.js ├── dx7.html ├── dx7 │ ├── dx7-awn.js │ ├── dx7-awp.js │ ├── dx7-lib.js │ ├── gui │ │ ├── dx7.css │ │ ├── gui.js │ │ └── keys.js │ ├── presets │ │ └── README.md │ └── wasm │ │ ├── dx7.js │ │ └── dx7.wasm.js └── wamsdk │ ├── wam-controller.js │ └── wam-processor.js └── src ├── c ├── dx7.cc ├── dx7.h ├── msfa │ ├── COPYING │ ├── aligned_buf.h │ ├── controllers.h │ ├── dx7note.cc │ ├── dx7note.h │ ├── env.cc │ ├── env.h │ ├── exp2.cc │ ├── exp2.h │ ├── fm_core.cc │ ├── fm_core.h │ ├── fm_op_kernel.cc │ ├── fm_op_kernel.h │ ├── freqlut.cc │ ├── freqlut.h │ ├── lfo.cc │ ├── lfo.h │ ├── module.h │ ├── patch.cc │ ├── patch.h │ ├── pitchenv.cc │ ├── pitchenv.h │ ├── ringbuffer.cc │ ├── ringbuffer.h │ ├── sin.cc │ ├── sin.h │ ├── synth.h │ ├── synth_unit.cc │ ├── synth_unit.h │ ├── tuning.cc │ └── tuning.h └── tuning-library │ ├── .gitignore │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── azure-pipelines.yml │ ├── commands │ └── showmapping.cpp │ ├── include │ ├── Tunings.h │ └── TuningsImpl.h │ ├── libs │ └── catch2 │ │ └── catch2.hpp │ ├── scripts │ └── release-notes.sh │ └── tests │ ├── alltests.cpp │ ├── data │ ├── 12-intune-dosle.scl │ ├── 12-intune.scl │ ├── 12-shuffled.scl │ ├── 31edo.scl │ ├── 6-exact.scl │ ├── ED3-17.scl │ ├── ED4-17.scl │ ├── bad │ │ ├── badnote.scl │ │ ├── blank-line.kbm │ │ ├── blanknote.scl │ │ ├── empty-bad.kbm │ │ ├── empty-extra.kbm │ │ ├── extraline-long.kbm │ │ ├── extraline.scl │ │ ├── garbage-key.kbm │ │ ├── missing-note.kbm │ │ └── missingnote.scl │ ├── empty-note61.kbm │ ├── empty-note69-dosle.kbm │ ├── empty-note69.kbm │ ├── mapping-a440-constant.kbm │ ├── mapping-a442-7-to-12.kbm │ ├── mapping-note53-to-430-408.kbm │ ├── mapping-note54-to-259-6.kbm │ ├── mapping-whitekeys-a440.kbm │ ├── mapping-whitekeys-c261.kbm │ ├── marvel12.scl │ ├── shuffle-a440-constant.kbm │ └── zeus22.scl │ ├── symbolcheck1.cpp │ └── symbolcheck2.cpp ├── dx7-awn.js ├── dx7-awp.js ├── dx7-lib.js └── wamsdk ├── processor.cpp └── processor.h /.gitignore: -------------------------------------------------------------------------------- 1 | dist/dx7/presets/*.syx 2 | build/dx7* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/README.md -------------------------------------------------------------------------------- /dist/audioworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/audioworker.js -------------------------------------------------------------------------------- /dist/audioworklet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/audioworklet.js -------------------------------------------------------------------------------- /dist/dx7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7.html -------------------------------------------------------------------------------- /dist/dx7/dx7-awn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/dx7-awn.js -------------------------------------------------------------------------------- /dist/dx7/dx7-awp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/dx7-awp.js -------------------------------------------------------------------------------- /dist/dx7/dx7-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/dx7-lib.js -------------------------------------------------------------------------------- /dist/dx7/gui/dx7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/gui/dx7.css -------------------------------------------------------------------------------- /dist/dx7/gui/gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/gui/gui.js -------------------------------------------------------------------------------- /dist/dx7/gui/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/gui/keys.js -------------------------------------------------------------------------------- /dist/dx7/presets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/presets/README.md -------------------------------------------------------------------------------- /dist/dx7/wasm/dx7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/wasm/dx7.js -------------------------------------------------------------------------------- /dist/dx7/wasm/dx7.wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/dx7/wasm/dx7.wasm.js -------------------------------------------------------------------------------- /dist/wamsdk/wam-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/wamsdk/wam-controller.js -------------------------------------------------------------------------------- /dist/wamsdk/wam-processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/dist/wamsdk/wam-processor.js -------------------------------------------------------------------------------- /src/c/dx7.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/dx7.cc -------------------------------------------------------------------------------- /src/c/dx7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/dx7.h -------------------------------------------------------------------------------- /src/c/msfa/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/COPYING -------------------------------------------------------------------------------- /src/c/msfa/aligned_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/aligned_buf.h -------------------------------------------------------------------------------- /src/c/msfa/controllers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/controllers.h -------------------------------------------------------------------------------- /src/c/msfa/dx7note.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/dx7note.cc -------------------------------------------------------------------------------- /src/c/msfa/dx7note.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/dx7note.h -------------------------------------------------------------------------------- /src/c/msfa/env.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/env.cc -------------------------------------------------------------------------------- /src/c/msfa/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/env.h -------------------------------------------------------------------------------- /src/c/msfa/exp2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/exp2.cc -------------------------------------------------------------------------------- /src/c/msfa/exp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/exp2.h -------------------------------------------------------------------------------- /src/c/msfa/fm_core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/fm_core.cc -------------------------------------------------------------------------------- /src/c/msfa/fm_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/fm_core.h -------------------------------------------------------------------------------- /src/c/msfa/fm_op_kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/fm_op_kernel.cc -------------------------------------------------------------------------------- /src/c/msfa/fm_op_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/fm_op_kernel.h -------------------------------------------------------------------------------- /src/c/msfa/freqlut.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/freqlut.cc -------------------------------------------------------------------------------- /src/c/msfa/freqlut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/freqlut.h -------------------------------------------------------------------------------- /src/c/msfa/lfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/lfo.cc -------------------------------------------------------------------------------- /src/c/msfa/lfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/lfo.h -------------------------------------------------------------------------------- /src/c/msfa/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/module.h -------------------------------------------------------------------------------- /src/c/msfa/patch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/patch.cc -------------------------------------------------------------------------------- /src/c/msfa/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/patch.h -------------------------------------------------------------------------------- /src/c/msfa/pitchenv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/pitchenv.cc -------------------------------------------------------------------------------- /src/c/msfa/pitchenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/pitchenv.h -------------------------------------------------------------------------------- /src/c/msfa/ringbuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/ringbuffer.cc -------------------------------------------------------------------------------- /src/c/msfa/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/ringbuffer.h -------------------------------------------------------------------------------- /src/c/msfa/sin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/sin.cc -------------------------------------------------------------------------------- /src/c/msfa/sin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/sin.h -------------------------------------------------------------------------------- /src/c/msfa/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/synth.h -------------------------------------------------------------------------------- /src/c/msfa/synth_unit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/synth_unit.cc -------------------------------------------------------------------------------- /src/c/msfa/synth_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/synth_unit.h -------------------------------------------------------------------------------- /src/c/msfa/tuning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/tuning.cc -------------------------------------------------------------------------------- /src/c/msfa/tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/msfa/tuning.h -------------------------------------------------------------------------------- /src/c/tuning-library/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/c/tuning-library/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/LICENSE.md -------------------------------------------------------------------------------- /src/c/tuning-library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/Makefile -------------------------------------------------------------------------------- /src/c/tuning-library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/README.md -------------------------------------------------------------------------------- /src/c/tuning-library/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/azure-pipelines.yml -------------------------------------------------------------------------------- /src/c/tuning-library/commands/showmapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/commands/showmapping.cpp -------------------------------------------------------------------------------- /src/c/tuning-library/include/Tunings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/include/Tunings.h -------------------------------------------------------------------------------- /src/c/tuning-library/include/TuningsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/include/TuningsImpl.h -------------------------------------------------------------------------------- /src/c/tuning-library/libs/catch2/catch2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/libs/catch2/catch2.hpp -------------------------------------------------------------------------------- /src/c/tuning-library/scripts/release-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/scripts/release-notes.sh -------------------------------------------------------------------------------- /src/c/tuning-library/tests/alltests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/alltests.cpp -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/12-intune-dosle.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/12-intune-dosle.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/12-intune.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/12-intune.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/12-shuffled.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/12-shuffled.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/31edo.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/31edo.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/6-exact.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/6-exact.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/ED3-17.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/ED3-17.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/ED4-17.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/ED4-17.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/badnote.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/badnote.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/blank-line.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/blank-line.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/blanknote.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/blanknote.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/empty-bad.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/empty-bad.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/empty-extra.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/empty-extra.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/extraline-long.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/extraline-long.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/extraline.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/extraline.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/garbage-key.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/garbage-key.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/missing-note.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/missing-note.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/bad/missingnote.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/bad/missingnote.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/empty-note61.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/empty-note61.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/empty-note69-dosle.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/empty-note69-dosle.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/empty-note69.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/empty-note69.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/mapping-a440-constant.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/mapping-a440-constant.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/mapping-a442-7-to-12.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/mapping-a442-7-to-12.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/mapping-note53-to-430-408.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/mapping-note53-to-430-408.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/mapping-note54-to-259-6.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/mapping-note54-to-259-6.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/mapping-whitekeys-a440.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/mapping-whitekeys-a440.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/mapping-whitekeys-c261.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/mapping-whitekeys-c261.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/marvel12.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/marvel12.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/shuffle-a440-constant.kbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/shuffle-a440-constant.kbm -------------------------------------------------------------------------------- /src/c/tuning-library/tests/data/zeus22.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/data/zeus22.scl -------------------------------------------------------------------------------- /src/c/tuning-library/tests/symbolcheck1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/symbolcheck1.cpp -------------------------------------------------------------------------------- /src/c/tuning-library/tests/symbolcheck2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/c/tuning-library/tests/symbolcheck2.cpp -------------------------------------------------------------------------------- /src/dx7-awn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/dx7-awn.js -------------------------------------------------------------------------------- /src/dx7-awp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/dx7-awp.js -------------------------------------------------------------------------------- /src/dx7-lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/dx7-lib.js -------------------------------------------------------------------------------- /src/wamsdk/processor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/wamsdk/processor.cpp -------------------------------------------------------------------------------- /src/wamsdk/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webaudiomodules/webdx7/HEAD/src/wamsdk/processor.h --------------------------------------------------------------------------------