├── .gitignore ├── 50-nitro.rules ├── README.md ├── debugrom ├── Makefile ├── arm7 │ ├── Makefile │ ├── linker.x │ └── source │ │ ├── start.s │ │ └── wram_sleep.s ├── arm9 │ ├── Makefile │ ├── gfx │ │ ├── hex.grit │ │ └── hex.png │ ├── linker.x │ └── source │ │ ├── hexedit.c │ │ └── start.s ├── header.bin └── header.py ├── device.py ├── nitro.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/.gitignore -------------------------------------------------------------------------------- /50-nitro.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/50-nitro.rules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/README.md -------------------------------------------------------------------------------- /debugrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/Makefile -------------------------------------------------------------------------------- /debugrom/arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm7/Makefile -------------------------------------------------------------------------------- /debugrom/arm7/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm7/linker.x -------------------------------------------------------------------------------- /debugrom/arm7/source/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm7/source/start.s -------------------------------------------------------------------------------- /debugrom/arm7/source/wram_sleep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm7/source/wram_sleep.s -------------------------------------------------------------------------------- /debugrom/arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm9/Makefile -------------------------------------------------------------------------------- /debugrom/arm9/gfx/hex.grit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm9/gfx/hex.grit -------------------------------------------------------------------------------- /debugrom/arm9/gfx/hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm9/gfx/hex.png -------------------------------------------------------------------------------- /debugrom/arm9/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm9/linker.x -------------------------------------------------------------------------------- /debugrom/arm9/source/hexedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm9/source/hexedit.c -------------------------------------------------------------------------------- /debugrom/arm9/source/start.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/arm9/source/start.s -------------------------------------------------------------------------------- /debugrom/header.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/header.bin -------------------------------------------------------------------------------- /debugrom/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/debugrom/header.py -------------------------------------------------------------------------------- /device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/device.py -------------------------------------------------------------------------------- /nitro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/nitro.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dirbaio/NitroDriver/HEAD/util.py --------------------------------------------------------------------------------