├── .gitignore ├── .gitmodules ├── .vimrc ├── LICENSE ├── Makefile ├── README.md ├── binaries └── EMPTY ├── extract_binaries.py ├── include ├── console.h ├── delay.h └── nds_platform.h ├── out └── EMPTY └── source ├── console.cpp ├── delay.s ├── main.cpp └── nds_platform.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/.vimrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/README.md -------------------------------------------------------------------------------- /binaries/EMPTY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extract_binaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/extract_binaries.py -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/include/console.h -------------------------------------------------------------------------------- /include/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/include/delay.h -------------------------------------------------------------------------------- /include/nds_platform.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void reset(); 4 | -------------------------------------------------------------------------------- /out/EMPTY: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/source/console.cpp -------------------------------------------------------------------------------- /source/delay.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/source/delay.s -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/nds_platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ntrteam/ds_ntrboot_flasher/HEAD/source/nds_platform.cpp --------------------------------------------------------------------------------