├── .editorconfig ├── .github └── workflows │ └── 3ds.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── Makefile ├── Makefile.linux ├── README.md ├── include ├── all.h ├── error.h ├── file.h ├── flac.h ├── main.h ├── mp3.h ├── opus.h ├── playback.h ├── sid.h ├── vorbis.h └── wav.h ├── meta ├── README.md ├── audio.wav ├── banner.png ├── banner.xcf ├── icon.png └── icon.xcf └── source ├── error.c ├── file.c ├── flac.c ├── main.c ├── mp3.c ├── opus.c ├── playback.c ├── sid.cpp ├── test.c ├── vorbis.c └── wav.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/3ds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.github/workflows/3ds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "disabled" 3 | } -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/Makefile.linux -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/README.md -------------------------------------------------------------------------------- /include/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/all.h -------------------------------------------------------------------------------- /include/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/error.h -------------------------------------------------------------------------------- /include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/file.h -------------------------------------------------------------------------------- /include/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/flac.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/main.h -------------------------------------------------------------------------------- /include/mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/mp3.h -------------------------------------------------------------------------------- /include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/opus.h -------------------------------------------------------------------------------- /include/playback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/playback.h -------------------------------------------------------------------------------- /include/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/sid.h -------------------------------------------------------------------------------- /include/vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/vorbis.h -------------------------------------------------------------------------------- /include/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/include/wav.h -------------------------------------------------------------------------------- /meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/meta/README.md -------------------------------------------------------------------------------- /meta/audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/meta/audio.wav -------------------------------------------------------------------------------- /meta/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/meta/banner.png -------------------------------------------------------------------------------- /meta/banner.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/meta/banner.xcf -------------------------------------------------------------------------------- /meta/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/meta/icon.png -------------------------------------------------------------------------------- /meta/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/meta/icon.xcf -------------------------------------------------------------------------------- /source/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/error.c -------------------------------------------------------------------------------- /source/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/file.c -------------------------------------------------------------------------------- /source/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/flac.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/main.c -------------------------------------------------------------------------------- /source/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/mp3.c -------------------------------------------------------------------------------- /source/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/opus.c -------------------------------------------------------------------------------- /source/playback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/playback.c -------------------------------------------------------------------------------- /source/sid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/sid.cpp -------------------------------------------------------------------------------- /source/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/test.c -------------------------------------------------------------------------------- /source/vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/vorbis.c -------------------------------------------------------------------------------- /source/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltabeard/ctrmus/HEAD/source/wav.c --------------------------------------------------------------------------------