├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── junologue-chorus-controls.png ├── junologue-chorus.cpp ├── junologue-chorus.mk ├── manifest.json └── tpl └── _unit.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/README.md -------------------------------------------------------------------------------- /junologue-chorus-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/junologue-chorus-controls.png -------------------------------------------------------------------------------- /junologue-chorus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/junologue-chorus.cpp -------------------------------------------------------------------------------- /junologue-chorus.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/junologue-chorus.mk -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/manifest.json -------------------------------------------------------------------------------- /tpl/_unit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterall/junologue-chorus/HEAD/tpl/_unit.c --------------------------------------------------------------------------------