├── .circleci └── config.yml ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build.md │ ├── chore.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── feature_request.md │ ├── performance.md │ ├── refactor.md │ ├── revert.md │ ├── style.md │ └── test.md ├── bug_report.md ├── pull_request_template.md └── workflows │ └── spell_checker.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── extensions.json └── settings.json ├── LICENSE.md ├── Makefile ├── README.md ├── _CHANGELOG.md ├── bootsoundnx.json ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CREDITS.md ├── TODO.md └── _CHANGELOG.md ├── install_dkp_switch_linux.sh ├── source ├── main.cpp ├── mp3.c ├── mp3.h ├── util.c └── util.h ├── toolbox.json └── version.txt /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/build.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/revert.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/style.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/ISSUE_TEMPLATE/test.md -------------------------------------------------------------------------------- /.github/bug_report.md: -------------------------------------------------------------------------------- 1 | # Bug -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/spell_checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.github/workflows/spell_checker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/README.md -------------------------------------------------------------------------------- /_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/_CHANGELOG.md -------------------------------------------------------------------------------- /bootsoundnx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/bootsoundnx.json -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/docs/CREDITS.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /docs/_CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## v1.5.0 4 | 5 | - ***TBD*** 6 | -------------------------------------------------------------------------------- /install_dkp_switch_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/install_dkp_switch_linux.sh -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/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/TheModdersDen/BootSoundNX/HEAD/source/util.c -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/source/util.h -------------------------------------------------------------------------------- /toolbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheModdersDen/BootSoundNX/HEAD/toolbox.json -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.4.6 2 | --------------------------------------------------------------------------------