├── .gitignore ├── .gitmodules ├── LICENSE.CLAP ├── LICENSE.md ├── Makefile ├── README.VST3 ├── README.md ├── config.mak ├── gui ├── channelwidget.cpp ├── channelwidget.h ├── gui.pro └── main.cpp ├── mp2k-clef-win64.vst3 ├── msvc32.mak ├── plugins ├── Makefile └── clefplugin.cpp └── src ├── Makefile ├── instrumentdata.cpp ├── instrumentdata.h ├── main.cpp ├── romfile.cpp ├── romfile.h ├── songdata.cpp ├── songdata.h ├── songtable.cpp └── songtable.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.CLAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/LICENSE.CLAP -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/Makefile -------------------------------------------------------------------------------- /README.VST3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/README.VST3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/README.md -------------------------------------------------------------------------------- /config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/config.mak -------------------------------------------------------------------------------- /gui/channelwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/gui/channelwidget.cpp -------------------------------------------------------------------------------- /gui/channelwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/gui/channelwidget.h -------------------------------------------------------------------------------- /gui/gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/gui/gui.pro -------------------------------------------------------------------------------- /gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/gui/main.cpp -------------------------------------------------------------------------------- /mp2k-clef-win64.vst3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/mp2k-clef-win64.vst3 -------------------------------------------------------------------------------- /msvc32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/msvc32.mak -------------------------------------------------------------------------------- /plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/plugins/Makefile -------------------------------------------------------------------------------- /plugins/clefplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/plugins/clefplugin.cpp -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/instrumentdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/instrumentdata.cpp -------------------------------------------------------------------------------- /src/instrumentdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/instrumentdata.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/romfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/romfile.cpp -------------------------------------------------------------------------------- /src/romfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/romfile.h -------------------------------------------------------------------------------- /src/songdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/songdata.cpp -------------------------------------------------------------------------------- /src/songdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/songdata.h -------------------------------------------------------------------------------- /src/songtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/songtable.cpp -------------------------------------------------------------------------------- /src/songtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahigerd/mp2k-clef/HEAD/src/songtable.h --------------------------------------------------------------------------------