├── .gitignore ├── Fami_mini_cnv ├── Fami_mini_cnv └── 読んでネ.txt ├── GBA_ExpLoader ├── GBA_ExpLoader.ini ├── Readme_EN_UTF-16.txt └── 読んでネ.txt ├── GBA_ExpLoader_57.zip ├── Makefile ├── README.md ├── arm7 ├── Makefile └── source │ ├── biosCalls.s │ └── main.c ├── arm9 ├── Makefile ├── graphics │ ├── shinonome.bin │ ├── shinonomeank.bin │ ├── unicode_ank.bin │ ├── unicode_l2u.bin │ └── unicode_u2l.bin ├── include │ ├── defaultSettings.bin │ ├── defaultSettings.s │ ├── dsCard.h │ ├── dsCard.itcm.cpp │ ├── find.c │ ├── find.h │ ├── graphics.s │ ├── inifile.cpp │ ├── inifile.h │ ├── io_sc_common.c │ ├── io_sc_common.h │ ├── nds_loader_arm9.c │ ├── nds_loader_arm9.h │ ├── ndsloader.cpp │ ├── ret_menu9_gen.c │ ├── ret_menu9_gen.h │ ├── sc_patches.c │ ├── sc_patches.h │ ├── sc_sram.c │ ├── sc_sram.h │ ├── stringtool.cpp │ ├── stringtool.h │ ├── tonccpy.c │ └── tonccpy.h └── source │ ├── GBA_ini.cpp │ ├── GBA_ini.h │ ├── ctrl_tbl.cpp │ ├── ctrl_tbl.h │ ├── dldi_32K.s │ ├── gba_patch.cpp │ ├── gba_patch.h │ ├── gbaldr.itcm.cpp │ ├── header_rep.cpp │ ├── header_rep.h │ ├── main.c │ ├── message.cpp │ ├── message.h │ ├── save_sel.c │ ├── skin.cpp │ ├── skin.h │ ├── tarosa │ ├── tarosa_Graphic.cpp │ ├── tarosa_Graphic.h │ ├── tarosa_Shinofont.cpp │ └── tarosa_Shinofont.h │ ├── unicode.c │ └── unicode.h ├── logo32.bmp └── ndsbootloader ├── .gitignore ├── Makefile ├── arm9code └── mpu_reset.s ├── load.ld └── source ├── arm7clear.s ├── arm9clear.arm.c ├── arm9mpu_reset.s ├── bios.s ├── boot.c ├── boot.h ├── card.h ├── disc_io.h ├── dldi_patcher.c ├── dldi_patcher.h ├── fat.c ├── fat.h ├── io_dldi.h ├── io_dldi.s ├── load_crt0.s ├── sdmmc.c └── sdmmc.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/.gitignore -------------------------------------------------------------------------------- /Fami_mini_cnv/Fami_mini_cnv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/Fami_mini_cnv/Fami_mini_cnv -------------------------------------------------------------------------------- /Fami_mini_cnv/読んでネ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/Fami_mini_cnv/読んでネ.txt -------------------------------------------------------------------------------- /GBA_ExpLoader/GBA_ExpLoader.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/GBA_ExpLoader/GBA_ExpLoader.ini -------------------------------------------------------------------------------- /GBA_ExpLoader/Readme_EN_UTF-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/GBA_ExpLoader/Readme_EN_UTF-16.txt -------------------------------------------------------------------------------- /GBA_ExpLoader/読んでネ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/GBA_ExpLoader/読んでネ.txt -------------------------------------------------------------------------------- /GBA_ExpLoader_57.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/GBA_ExpLoader_57.zip -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/README.md -------------------------------------------------------------------------------- /arm7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm7/Makefile -------------------------------------------------------------------------------- /arm7/source/biosCalls.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm7/source/biosCalls.s -------------------------------------------------------------------------------- /arm7/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm7/source/main.c -------------------------------------------------------------------------------- /arm9/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/Makefile -------------------------------------------------------------------------------- /arm9/graphics/shinonome.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/graphics/shinonome.bin -------------------------------------------------------------------------------- /arm9/graphics/shinonomeank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/graphics/shinonomeank.bin -------------------------------------------------------------------------------- /arm9/graphics/unicode_ank.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/graphics/unicode_ank.bin -------------------------------------------------------------------------------- /arm9/graphics/unicode_l2u.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/graphics/unicode_l2u.bin -------------------------------------------------------------------------------- /arm9/graphics/unicode_u2l.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/graphics/unicode_u2l.bin -------------------------------------------------------------------------------- /arm9/include/defaultSettings.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/defaultSettings.bin -------------------------------------------------------------------------------- /arm9/include/defaultSettings.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/defaultSettings.s -------------------------------------------------------------------------------- /arm9/include/dsCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/dsCard.h -------------------------------------------------------------------------------- /arm9/include/dsCard.itcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/dsCard.itcm.cpp -------------------------------------------------------------------------------- /arm9/include/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/find.c -------------------------------------------------------------------------------- /arm9/include/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/find.h -------------------------------------------------------------------------------- /arm9/include/graphics.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/graphics.s -------------------------------------------------------------------------------- /arm9/include/inifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/inifile.cpp -------------------------------------------------------------------------------- /arm9/include/inifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/inifile.h -------------------------------------------------------------------------------- /arm9/include/io_sc_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/io_sc_common.c -------------------------------------------------------------------------------- /arm9/include/io_sc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/io_sc_common.h -------------------------------------------------------------------------------- /arm9/include/nds_loader_arm9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/nds_loader_arm9.c -------------------------------------------------------------------------------- /arm9/include/nds_loader_arm9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/nds_loader_arm9.h -------------------------------------------------------------------------------- /arm9/include/ndsloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/ndsloader.cpp -------------------------------------------------------------------------------- /arm9/include/ret_menu9_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/ret_menu9_gen.c -------------------------------------------------------------------------------- /arm9/include/ret_menu9_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/ret_menu9_gen.h -------------------------------------------------------------------------------- /arm9/include/sc_patches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/sc_patches.c -------------------------------------------------------------------------------- /arm9/include/sc_patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/sc_patches.h -------------------------------------------------------------------------------- /arm9/include/sc_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/sc_sram.c -------------------------------------------------------------------------------- /arm9/include/sc_sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/sc_sram.h -------------------------------------------------------------------------------- /arm9/include/stringtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/stringtool.cpp -------------------------------------------------------------------------------- /arm9/include/stringtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/stringtool.h -------------------------------------------------------------------------------- /arm9/include/tonccpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/tonccpy.c -------------------------------------------------------------------------------- /arm9/include/tonccpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/include/tonccpy.h -------------------------------------------------------------------------------- /arm9/source/GBA_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/GBA_ini.cpp -------------------------------------------------------------------------------- /arm9/source/GBA_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/GBA_ini.h -------------------------------------------------------------------------------- /arm9/source/ctrl_tbl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/ctrl_tbl.cpp -------------------------------------------------------------------------------- /arm9/source/ctrl_tbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/ctrl_tbl.h -------------------------------------------------------------------------------- /arm9/source/dldi_32K.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/dldi_32K.s -------------------------------------------------------------------------------- /arm9/source/gba_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/gba_patch.cpp -------------------------------------------------------------------------------- /arm9/source/gba_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/gba_patch.h -------------------------------------------------------------------------------- /arm9/source/gbaldr.itcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/gbaldr.itcm.cpp -------------------------------------------------------------------------------- /arm9/source/header_rep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/header_rep.cpp -------------------------------------------------------------------------------- /arm9/source/header_rep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/header_rep.h -------------------------------------------------------------------------------- /arm9/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/main.c -------------------------------------------------------------------------------- /arm9/source/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/message.cpp -------------------------------------------------------------------------------- /arm9/source/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/message.h -------------------------------------------------------------------------------- /arm9/source/save_sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/save_sel.c -------------------------------------------------------------------------------- /arm9/source/skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/skin.cpp -------------------------------------------------------------------------------- /arm9/source/skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/skin.h -------------------------------------------------------------------------------- /arm9/source/tarosa/tarosa_Graphic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/tarosa/tarosa_Graphic.cpp -------------------------------------------------------------------------------- /arm9/source/tarosa/tarosa_Graphic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/tarosa/tarosa_Graphic.h -------------------------------------------------------------------------------- /arm9/source/tarosa/tarosa_Shinofont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/tarosa/tarosa_Shinofont.cpp -------------------------------------------------------------------------------- /arm9/source/tarosa/tarosa_Shinofont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/tarosa/tarosa_Shinofont.h -------------------------------------------------------------------------------- /arm9/source/unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/unicode.c -------------------------------------------------------------------------------- /arm9/source/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/arm9/source/unicode.h -------------------------------------------------------------------------------- /logo32.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/logo32.bmp -------------------------------------------------------------------------------- /ndsbootloader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/.gitignore -------------------------------------------------------------------------------- /ndsbootloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/Makefile -------------------------------------------------------------------------------- /ndsbootloader/arm9code/mpu_reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/arm9code/mpu_reset.s -------------------------------------------------------------------------------- /ndsbootloader/load.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/load.ld -------------------------------------------------------------------------------- /ndsbootloader/source/arm7clear.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/arm7clear.s -------------------------------------------------------------------------------- /ndsbootloader/source/arm9clear.arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/arm9clear.arm.c -------------------------------------------------------------------------------- /ndsbootloader/source/arm9mpu_reset.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/arm9mpu_reset.s -------------------------------------------------------------------------------- /ndsbootloader/source/bios.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/bios.s -------------------------------------------------------------------------------- /ndsbootloader/source/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/boot.c -------------------------------------------------------------------------------- /ndsbootloader/source/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/boot.h -------------------------------------------------------------------------------- /ndsbootloader/source/card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/card.h -------------------------------------------------------------------------------- /ndsbootloader/source/disc_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/disc_io.h -------------------------------------------------------------------------------- /ndsbootloader/source/dldi_patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/dldi_patcher.c -------------------------------------------------------------------------------- /ndsbootloader/source/dldi_patcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/dldi_patcher.h -------------------------------------------------------------------------------- /ndsbootloader/source/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/fat.c -------------------------------------------------------------------------------- /ndsbootloader/source/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/fat.h -------------------------------------------------------------------------------- /ndsbootloader/source/io_dldi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/io_dldi.h -------------------------------------------------------------------------------- /ndsbootloader/source/io_dldi.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/io_dldi.s -------------------------------------------------------------------------------- /ndsbootloader/source/load_crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/load_crt0.s -------------------------------------------------------------------------------- /ndsbootloader/source/sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/sdmmc.c -------------------------------------------------------------------------------- /ndsbootloader/source/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApacheThunder/GBA-Exploader/HEAD/ndsbootloader/source/sdmmc.h --------------------------------------------------------------------------------