├── .gitignore ├── LICENSE ├── README.md ├── makefile └── src ├── synth_plugin.c └── ttl_generator.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islainstruments/SF2LV2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islainstruments/SF2LV2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islainstruments/SF2LV2/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islainstruments/SF2LV2/HEAD/makefile -------------------------------------------------------------------------------- /src/synth_plugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islainstruments/SF2LV2/HEAD/src/synth_plugin.c -------------------------------------------------------------------------------- /src/ttl_generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/islainstruments/SF2LV2/HEAD/src/ttl_generator.c --------------------------------------------------------------------------------