├── .gitignore ├── LICENSE.md ├── Makefile ├── hbl.json └── source ├── main.c └── trampoline.s /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/nx-hbloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/nx-hbloader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/nx-hbloader/HEAD/Makefile -------------------------------------------------------------------------------- /hbl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/nx-hbloader/HEAD/hbl.json -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/nx-hbloader/HEAD/source/main.c -------------------------------------------------------------------------------- /source/trampoline.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/nx-hbloader/HEAD/source/trampoline.s --------------------------------------------------------------------------------