├── .gitignore ├── Access └── Virus C │ ├── README.md │ └── program.csv ├── Audiothingies └── Micromonsta │ ├── README.md │ ├── patch-options │ ├── ArpEvent.csv │ ├── ArpSpeed.csv │ ├── ArpSteps.csv │ ├── ArpStyle.csv │ ├── ChorderIntervals.csv │ ├── ChorderKey.csv │ ├── ChorderScale.csv │ ├── Envelope.csv │ ├── FXType1.csv │ ├── Filters.csv │ ├── KeyboardTracking.csv │ ├── LFODelay.csv │ ├── LFOPhase.csv │ ├── LFOSpeed.csv │ ├── LFOType.csv │ ├── LagSource.csv │ ├── ModulationDestination.csv │ ├── ModulationSource.csv │ ├── OscType.csv │ ├── ScalerDesitnation.csv │ ├── ScalerSource.csv │ ├── SubWaveform.csv │ └── SynthMode.csv │ └── patch.csv ├── Dave Smith Instruments └── Prophet Rev2 │ ├── README.md │ ├── global-options │ └── alternative-tunings.csv │ ├── global.csv │ ├── program-options │ ├── ab-modes.csv │ ├── arpeggiator-modes.csv │ ├── arpeggiator-ranges.csv │ ├── clock-divisions.csv │ ├── filter-modes.csv │ ├── fx-sync-times.csv │ ├── fx-types.csv │ ├── gated-sequencer-modes.csv │ ├── glide-modes.csv │ ├── keyboard-modes.csv │ ├── lfo-shapes.csv │ ├── lfo-sync-times.csv │ ├── mod-destinations-1.csv │ ├── mod-destinations-2.csv │ ├── mod-sources.csv │ ├── osc-shapes.csv │ ├── pan-modes.csv │ └── unison-modes.csv │ └── program.csv ├── E-mu └── Morpheus │ ├── README.md │ └── preset.csv ├── Kawai ├── K1r │ ├── README.md │ ├── multi.csv │ ├── patch.csv │ └── waveforms.csv └── K5000W │ ├── README.md │ ├── add-wave-kit.csv │ ├── fx-params.csv │ ├── options.csv │ ├── reverb-params.csv │ ├── tone-common.csv │ └── tone-source.csv ├── Novation ├── A-Station │ ├── README.md │ └── program.csv ├── Circuit Mono Station │ ├── README.md │ └── patch.csv └── Nova │ └── README.md ├── README.md ├── Roland ├── JD-800 │ ├── README.md │ ├── part-special.csv │ ├── part.csv │ ├── patch-common.csv │ ├── patch-effect.csv │ ├── patch-tone.csv │ ├── special-setup-common.csv │ ├── special-setup-key.csv │ ├── system.csv │ ├── wave-cards │ │ ├── so-jd80-01.txt │ │ ├── so-jd80-02.txt │ │ ├── so-jd80-03.txt │ │ ├── so-jd80-04.txt │ │ ├── so-jd80-05.txt │ │ ├── so-jd80-06.txt │ │ ├── so-jd80-07.txt │ │ └── so-jd80-08.txt │ └── waveforms.txt └── JV-1080 │ ├── README.md │ ├── voice-common-patch.csv │ └── voice-tone-patch.csv ├── Yamaha ├── AN1x │ ├── README.md │ ├── voice-common.csv │ └── voice-scene.csv └── DX21 │ ├── README.md │ └── voice-patch.csv └── path-terms.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /Access/Virus C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Access/Virus C/README.md -------------------------------------------------------------------------------- /Access/Virus C/program.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Access/Virus C/program.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/README.md -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ArpEvent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ArpEvent.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ArpSpeed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ArpSpeed.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ArpSteps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ArpSteps.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ArpStyle.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ArpStyle.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ChorderIntervals.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ChorderIntervals.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ChorderKey.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ChorderKey.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ChorderScale.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ChorderScale.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/Envelope.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/Envelope.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/FXType1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/FXType1.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/Filters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/Filters.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/KeyboardTracking.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/KeyboardTracking.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/LFODelay.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/LFODelay.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/LFOPhase.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/LFOPhase.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/LFOSpeed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/LFOSpeed.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/LFOType.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/LFOType.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/LagSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/LagSource.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ModulationDestination.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ModulationDestination.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ModulationSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ModulationSource.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/OscType.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/OscType.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ScalerDesitnation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ScalerDesitnation.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/ScalerSource.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/ScalerSource.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/SubWaveform.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/SubWaveform.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch-options/SynthMode.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch-options/SynthMode.csv -------------------------------------------------------------------------------- /Audiothingies/Micromonsta/patch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Audiothingies/Micromonsta/patch.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/README.md -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/global-options/alternative-tunings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/global-options/alternative-tunings.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/global.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/global.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/ab-modes.csv: -------------------------------------------------------------------------------- 1 | Layer A 2 | Stack A+B 3 | Split A|B 4 | -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/arpeggiator-modes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/arpeggiator-modes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/arpeggiator-ranges.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/arpeggiator-ranges.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/clock-divisions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/clock-divisions.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/filter-modes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/filter-modes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/fx-sync-times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/fx-sync-times.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/fx-types.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/fx-types.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/gated-sequencer-modes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/gated-sequencer-modes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/glide-modes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/glide-modes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/keyboard-modes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/keyboard-modes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/lfo-shapes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/lfo-shapes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/lfo-sync-times.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/lfo-sync-times.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/mod-destinations-1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/mod-destinations-1.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/mod-destinations-2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/mod-destinations-2.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/mod-sources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/mod-sources.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/osc-shapes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/osc-shapes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/pan-modes.csv: -------------------------------------------------------------------------------- 1 | Alternate 2 | Fixed 3 | -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program-options/unison-modes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program-options/unison-modes.csv -------------------------------------------------------------------------------- /Dave Smith Instruments/Prophet Rev2/program.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Dave Smith Instruments/Prophet Rev2/program.csv -------------------------------------------------------------------------------- /E-mu/Morpheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/E-mu/Morpheus/README.md -------------------------------------------------------------------------------- /E-mu/Morpheus/preset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/E-mu/Morpheus/preset.csv -------------------------------------------------------------------------------- /Kawai/K1r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K1r/README.md -------------------------------------------------------------------------------- /Kawai/K1r/multi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K1r/multi.csv -------------------------------------------------------------------------------- /Kawai/K1r/patch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K1r/patch.csv -------------------------------------------------------------------------------- /Kawai/K1r/waveforms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K1r/waveforms.csv -------------------------------------------------------------------------------- /Kawai/K5000W/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/README.md -------------------------------------------------------------------------------- /Kawai/K5000W/add-wave-kit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/add-wave-kit.csv -------------------------------------------------------------------------------- /Kawai/K5000W/fx-params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/fx-params.csv -------------------------------------------------------------------------------- /Kawai/K5000W/options.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/options.csv -------------------------------------------------------------------------------- /Kawai/K5000W/reverb-params.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/reverb-params.csv -------------------------------------------------------------------------------- /Kawai/K5000W/tone-common.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/tone-common.csv -------------------------------------------------------------------------------- /Kawai/K5000W/tone-source.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Kawai/K5000W/tone-source.csv -------------------------------------------------------------------------------- /Novation/A-Station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Novation/A-Station/README.md -------------------------------------------------------------------------------- /Novation/A-Station/program.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Novation/A-Station/program.csv -------------------------------------------------------------------------------- /Novation/Circuit Mono Station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Novation/Circuit Mono Station/README.md -------------------------------------------------------------------------------- /Novation/Circuit Mono Station/patch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Novation/Circuit Mono Station/patch.csv -------------------------------------------------------------------------------- /Novation/Nova/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Novation/Nova/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/README.md -------------------------------------------------------------------------------- /Roland/JD-800/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/README.md -------------------------------------------------------------------------------- /Roland/JD-800/part-special.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/part-special.csv -------------------------------------------------------------------------------- /Roland/JD-800/part.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/part.csv -------------------------------------------------------------------------------- /Roland/JD-800/patch-common.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/patch-common.csv -------------------------------------------------------------------------------- /Roland/JD-800/patch-effect.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/patch-effect.csv -------------------------------------------------------------------------------- /Roland/JD-800/patch-tone.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/patch-tone.csv -------------------------------------------------------------------------------- /Roland/JD-800/special-setup-common.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/special-setup-common.csv -------------------------------------------------------------------------------- /Roland/JD-800/special-setup-key.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/special-setup-key.csv -------------------------------------------------------------------------------- /Roland/JD-800/system.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/system.csv -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-01.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-02.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-03.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-04.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-05.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-06.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-07.txt -------------------------------------------------------------------------------- /Roland/JD-800/wave-cards/so-jd80-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/wave-cards/so-jd80-08.txt -------------------------------------------------------------------------------- /Roland/JD-800/waveforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JD-800/waveforms.txt -------------------------------------------------------------------------------- /Roland/JV-1080/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JV-1080/README.md -------------------------------------------------------------------------------- /Roland/JV-1080/voice-common-patch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JV-1080/voice-common-patch.csv -------------------------------------------------------------------------------- /Roland/JV-1080/voice-tone-patch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Roland/JV-1080/voice-tone-patch.csv -------------------------------------------------------------------------------- /Yamaha/AN1x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Yamaha/AN1x/README.md -------------------------------------------------------------------------------- /Yamaha/AN1x/voice-common.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Yamaha/AN1x/voice-common.csv -------------------------------------------------------------------------------- /Yamaha/AN1x/voice-scene.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Yamaha/AN1x/voice-scene.csv -------------------------------------------------------------------------------- /Yamaha/DX21/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Yamaha/DX21/README.md -------------------------------------------------------------------------------- /Yamaha/DX21/voice-patch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/Yamaha/DX21/voice-patch.csv -------------------------------------------------------------------------------- /path-terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coffeeshopped/patch-base-synths/HEAD/path-terms.txt --------------------------------------------------------------------------------