├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── bootsoundnx.json ├── source ├── main.cpp ├── mp3.c ├── mp3.h ├── util.c └── util.h └── toolbox.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/README.md -------------------------------------------------------------------------------- /bootsoundnx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/bootsoundnx.json -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/source/mp3.c -------------------------------------------------------------------------------- /source/mp3.h: -------------------------------------------------------------------------------- 1 | extern "C" 2 | { 3 | void playMp3(char* file); 4 | } 5 | -------------------------------------------------------------------------------- /source/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/source/util.c -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/source/util.h -------------------------------------------------------------------------------- /toolbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KranKRival/BootSoundNX/HEAD/toolbox.json --------------------------------------------------------------------------------