├── .gitignore ├── DSihax_legacy ├── code_payload │ ├── Makefile │ ├── TADmuffin.py │ ├── build_py.bat │ ├── defines_11x.h │ ├── otherapp_template │ │ ├── Makefile │ │ ├── build.bat │ │ ├── cn_secondary_payload │ │ │ ├── Makefile │ │ │ ├── otherapp.ld │ │ │ └── source │ │ │ │ ├── crt0.s │ │ │ │ ├── font.c │ │ │ │ ├── font_bin.h │ │ │ │ ├── main.c │ │ │ │ ├── text.c │ │ │ │ └── text.h │ │ └── libctru │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── include │ │ │ ├── ctr │ │ │ │ ├── AC.h │ │ │ │ ├── APT.h │ │ │ │ ├── CFGNOR.h │ │ │ │ ├── CSND.h │ │ │ │ ├── FS.h │ │ │ │ ├── GPU.h │ │ │ │ ├── GSP.h │ │ │ │ ├── GX.h │ │ │ │ ├── HID.h │ │ │ │ ├── HTTPC.h │ │ │ │ ├── IR.h │ │ │ │ ├── OS.h │ │ │ │ ├── SHDR.h │ │ │ │ ├── SOC.h │ │ │ │ ├── srv.h │ │ │ │ ├── svc.h │ │ │ │ └── types.h │ │ │ ├── netdb.h │ │ │ ├── netinet │ │ │ │ ├── in.h │ │ │ │ └── tcp.h │ │ │ └── sys │ │ │ │ └── socket.h │ │ │ └── source │ │ │ ├── AC.c │ │ │ ├── APT.c │ │ │ ├── CFGNOR.c │ │ │ ├── CSND.c │ │ │ ├── FS.c │ │ │ ├── GPU.c │ │ │ ├── GSP.c │ │ │ ├── GX.c │ │ │ ├── HID.c │ │ │ ├── HTTPC.c │ │ │ ├── IR.c │ │ │ ├── OS.c │ │ │ ├── SHDR.c │ │ │ ├── SOC.c │ │ │ ├── _GSP.c │ │ │ ├── gpuResetSequence.c │ │ │ ├── srv.c │ │ │ └── svc.s │ └── rop_payload.s └── rop_payload │ ├── Makefile │ ├── rop_gadgets.h │ ├── rop_payload.s │ └── taiwan │ ├── Makefile │ ├── defines_taiwan.h │ └── rop_payload.s ├── LICENSE ├── bb3_multitool ├── Makefile ├── _taiwan │ ├── Makefile │ ├── bb3.bin │ ├── bb3.s │ ├── build.bat │ ├── build.py │ ├── defines_11x.h │ ├── otherapp_template │ │ ├── Makefile │ │ ├── build │ │ │ └── empty │ │ ├── data │ │ │ └── empty │ │ ├── libctru │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── include │ │ │ │ ├── ctr │ │ │ │ │ ├── AC.h │ │ │ │ │ ├── APT.h │ │ │ │ │ ├── CFGNOR.h │ │ │ │ │ ├── CSND.h │ │ │ │ │ ├── FS.h │ │ │ │ │ ├── GPU.h │ │ │ │ │ ├── GSP.h │ │ │ │ │ ├── GX.h │ │ │ │ │ ├── HID.h │ │ │ │ │ ├── HTTPC.h │ │ │ │ │ ├── IR.h │ │ │ │ │ ├── OS.h │ │ │ │ │ ├── SHDR.h │ │ │ │ │ ├── SOC.h │ │ │ │ │ ├── srv.h │ │ │ │ │ ├── svc.h │ │ │ │ │ └── types.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netinet │ │ │ │ │ ├── in.h │ │ │ │ │ └── tcp.h │ │ │ │ └── sys │ │ │ │ │ └── socket.h │ │ │ ├── lib │ │ │ │ └── libctru.a │ │ │ └── source │ │ │ │ ├── AC.c │ │ │ │ ├── APT.c │ │ │ │ ├── CFGNOR.c │ │ │ │ ├── CSND.c │ │ │ │ ├── FS.c │ │ │ │ ├── GPU.c │ │ │ │ ├── GSP.c │ │ │ │ ├── GX.c │ │ │ │ ├── HID.c │ │ │ │ ├── HTTPC.c │ │ │ │ ├── IR.c │ │ │ │ ├── OS.c │ │ │ │ ├── SHDR.c │ │ │ │ ├── SOC.c │ │ │ │ ├── _GSP.c │ │ │ │ ├── gpuResetSequence.c │ │ │ │ ├── srv.c │ │ │ │ └── svc.s │ │ ├── otherapp.ld │ │ └── source │ │ │ ├── crt0.s │ │ │ ├── font.c │ │ │ ├── font_bin.h │ │ │ ├── main.c │ │ │ ├── text.c │ │ │ └── text.h │ ├── ropkit_boototherapp.s │ ├── ropkit_ropinclude.s │ └── slot1.bin ├── bb3.bin ├── bb3.s ├── build.bat ├── build.py ├── defines_11x.h ├── otherapp_template │ ├── Makefile │ ├── data │ │ ├── rop_eur.bin │ │ ├── rop_jpn.bin │ │ ├── rop_kor.bin │ │ └── rop_usa.bin │ ├── libctru │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── include │ │ │ ├── ctr │ │ │ │ ├── AC.h │ │ │ │ ├── APT.h │ │ │ │ ├── CFGNOR.h │ │ │ │ ├── CSND.h │ │ │ │ ├── FS.h │ │ │ │ ├── GPU.h │ │ │ │ ├── GSP.h │ │ │ │ ├── GX.h │ │ │ │ ├── HID.h │ │ │ │ ├── HTTPC.h │ │ │ │ ├── IR.h │ │ │ │ ├── OS.h │ │ │ │ ├── SHDR.h │ │ │ │ ├── SOC.h │ │ │ │ ├── srv.h │ │ │ │ ├── svc.h │ │ │ │ └── types.h │ │ │ ├── netdb.h │ │ │ ├── netinet │ │ │ │ ├── in.h │ │ │ │ └── tcp.h │ │ │ └── sys │ │ │ │ └── socket.h │ │ ├── lib │ │ │ └── libctru.a │ │ └── source │ │ │ ├── AC.c │ │ │ ├── APT.c │ │ │ ├── CFGNOR.c │ │ │ ├── CSND.c │ │ │ ├── FS.c │ │ │ ├── GPU.c │ │ │ ├── GSP.c │ │ │ ├── GX.c │ │ │ ├── HID.c │ │ │ ├── HTTPC.c │ │ │ ├── IR.c │ │ │ ├── OS.c │ │ │ ├── SHDR.c │ │ │ ├── SOC.c │ │ │ ├── _GSP.c │ │ │ ├── gpuResetSequence.c │ │ │ ├── srv.c │ │ │ └── svc.s │ ├── otherapp.ld │ └── source │ │ ├── crt0.s │ │ ├── font.c │ │ ├── font_bin.h │ │ ├── main.c │ │ ├── rop_eur_bin.h │ │ ├── rop_jpn_bin.h │ │ ├── rop_kor_bin.h │ │ ├── rop_usa_bin.h │ │ ├── text.c │ │ └── text.h ├── ropkit_boototherapp.s ├── ropkit_ropinclude.s └── slot1.bin ├── bb3_payload ├── TADmuffin.py ├── TADmuffinPC │ ├── LICENSE │ ├── Makefile │ ├── data │ │ └── rop_payload.bin │ ├── include │ │ ├── TI_aes_128.h │ │ ├── aes-cbc-cmac.h │ │ ├── crypto.h │ │ ├── payload.h │ │ ├── sha256.h │ │ ├── tadpole.h │ │ └── types.h │ └── source │ │ ├── TI_aes_128.cpp │ │ ├── aes-cbc-cmac.cpp │ │ ├── crypto.cpp │ │ ├── main.cpp │ │ ├── sha256.cpp │ │ └── tadpole.cpp ├── demo │ ├── bb3.bin │ └── bb3.py ├── movable.sed_here.txt ├── readme.txt └── taiwan │ └── TADmuffin.py └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/.gitignore -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/Makefile -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/TADmuffin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/TADmuffin.py -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/build_py.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/build_py.bat -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/defines_11x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/defines_11x.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/Makefile -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/build.bat: -------------------------------------------------------------------------------- 1 | make clean 2 | make 3 | pause -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/Makefile -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/otherapp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/otherapp.ld -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/crt0.s -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/font.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/font_bin.h: -------------------------------------------------------------------------------- 1 | extern const u8 font_bin[]; -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/main.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/text.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/cn_secondary_payload/source/text.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | lib 3 | -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/Makefile -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/AC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/AC.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/APT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/APT.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/CFGNOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/CFGNOR.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/CSND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/CSND.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/FS.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/GPU.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/GSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/GSP.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/GX.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/HID.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/HTTPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/HTTPC.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/IR.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/OS.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/SHDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/SHDR.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/SOC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/SOC.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/srv.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/svc.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/ctr/types.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/netdb.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/netinet/in.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/netinet/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/include/sys/socket.h -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/AC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/AC.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/APT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/APT.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/CFGNOR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/CFGNOR.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/CSND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/CSND.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/FS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/FS.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/GPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/GPU.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/GSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/GSP.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/GX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/GX.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/HID.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/HTTPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/HTTPC.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/IR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/IR.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/OS.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/SHDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/SHDR.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/SOC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/SOC.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/_GSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/_GSP.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/gpuResetSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/gpuResetSequence.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/srv.c -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/otherapp_template/libctru/source/svc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/otherapp_template/libctru/source/svc.s -------------------------------------------------------------------------------- /DSihax_legacy/code_payload/rop_payload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/code_payload/rop_payload.s -------------------------------------------------------------------------------- /DSihax_legacy/rop_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/rop_payload/Makefile -------------------------------------------------------------------------------- /DSihax_legacy/rop_payload/rop_gadgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/rop_payload/rop_gadgets.h -------------------------------------------------------------------------------- /DSihax_legacy/rop_payload/rop_payload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/rop_payload/rop_payload.s -------------------------------------------------------------------------------- /DSihax_legacy/rop_payload/taiwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/rop_payload/taiwan/Makefile -------------------------------------------------------------------------------- /DSihax_legacy/rop_payload/taiwan/defines_taiwan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/rop_payload/taiwan/defines_taiwan.h -------------------------------------------------------------------------------- /DSihax_legacy/rop_payload/taiwan/rop_payload.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/DSihax_legacy/rop_payload/taiwan/rop_payload.s -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/LICENSE -------------------------------------------------------------------------------- /bb3_multitool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/Makefile -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/Makefile -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/bb3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/bb3.bin -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/bb3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/bb3.s -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/build.bat -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/build.py -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/defines_11x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/defines_11x.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/Makefile -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/build/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/data/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/Makefile -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/AC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/AC.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/APT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/APT.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/CFGNOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/CFGNOR.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/CSND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/CSND.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/FS.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/GPU.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/GSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/GSP.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/GX.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/HID.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/HTTPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/HTTPC.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/IR.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/OS.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/SHDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/SHDR.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/SOC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/SOC.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/srv.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/svc.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/ctr/types.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/netdb.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/netinet/in.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/netinet/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/include/sys/socket.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/lib/libctru.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/lib/libctru.a -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/AC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/AC.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/APT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/APT.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/CFGNOR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/CFGNOR.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/CSND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/CSND.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/FS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/FS.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/GPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/GPU.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/GSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/GSP.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/GX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/GX.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/HID.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/HTTPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/HTTPC.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/IR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/IR.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/OS.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/SHDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/SHDR.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/SOC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/SOC.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/_GSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/_GSP.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/gpuResetSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/gpuResetSequence.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/srv.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/libctru/source/svc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/libctru/source/svc.s -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/otherapp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/otherapp.ld -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/source/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/source/crt0.s -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/source/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/source/font.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/source/font_bin.h: -------------------------------------------------------------------------------- 1 | extern const u8 font_bin[]; -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/source/main.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/source/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/source/text.c -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/otherapp_template/source/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/otherapp_template/source/text.h -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/ropkit_boototherapp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/ropkit_boototherapp.s -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/ropkit_ropinclude.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/ropkit_ropinclude.s -------------------------------------------------------------------------------- /bb3_multitool/_taiwan/slot1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/_taiwan/slot1.bin -------------------------------------------------------------------------------- /bb3_multitool/bb3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/bb3.bin -------------------------------------------------------------------------------- /bb3_multitool/bb3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/bb3.s -------------------------------------------------------------------------------- /bb3_multitool/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/build.bat -------------------------------------------------------------------------------- /bb3_multitool/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/build.py -------------------------------------------------------------------------------- /bb3_multitool/defines_11x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/defines_11x.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/Makefile -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/data/rop_eur.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/data/rop_eur.bin -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/data/rop_jpn.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/data/rop_jpn.bin -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/data/rop_kor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/data/rop_kor.bin -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/data/rop_usa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/data/rop_usa.bin -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/Makefile -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/AC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/AC.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/APT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/APT.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/CFGNOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/CFGNOR.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/CSND.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/CSND.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/FS.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/GPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/GPU.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/GSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/GSP.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/GX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/GX.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/HID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/HID.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/HTTPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/HTTPC.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/IR.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/OS.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/SHDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/SHDR.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/SOC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/SOC.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/srv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/srv.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/svc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/svc.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/ctr/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/ctr/types.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/netdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/netdb.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/netinet/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/netinet/in.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/netinet/tcp.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/include/sys/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/include/sys/socket.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/lib/libctru.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/lib/libctru.a -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/AC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/AC.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/APT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/APT.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/CFGNOR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/CFGNOR.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/CSND.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/CSND.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/FS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/FS.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/GPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/GPU.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/GSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/GSP.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/GX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/GX.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/HID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/HID.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/HTTPC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/HTTPC.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/IR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/IR.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/OS.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/SHDR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/SHDR.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/SOC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/SOC.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/_GSP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/_GSP.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/gpuResetSequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/gpuResetSequence.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/srv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/srv.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/libctru/source/svc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/libctru/source/svc.s -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/otherapp.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/otherapp.ld -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/crt0.s -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/font.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/font_bin.h: -------------------------------------------------------------------------------- 1 | extern const u8 font_bin[]; -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/main.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/rop_eur_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/rop_eur_bin.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/rop_jpn_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/rop_jpn_bin.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/rop_kor_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/rop_kor_bin.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/rop_usa_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/rop_usa_bin.h -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/text.c -------------------------------------------------------------------------------- /bb3_multitool/otherapp_template/source/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/otherapp_template/source/text.h -------------------------------------------------------------------------------- /bb3_multitool/ropkit_boototherapp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/ropkit_boototherapp.s -------------------------------------------------------------------------------- /bb3_multitool/ropkit_ropinclude.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/ropkit_ropinclude.s -------------------------------------------------------------------------------- /bb3_multitool/slot1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_multitool/slot1.bin -------------------------------------------------------------------------------- /bb3_payload/TADmuffin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffin.py -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/LICENSE -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/Makefile -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/data/rop_payload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/data/rop_payload.bin -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/TI_aes_128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/TI_aes_128.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/aes-cbc-cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/aes-cbc-cmac.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/crypto.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/payload.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/sha256.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/tadpole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/tadpole.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/include/types.h -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/source/TI_aes_128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/source/TI_aes_128.cpp -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/source/aes-cbc-cmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/source/aes-cbc-cmac.cpp -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/source/crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/source/crypto.cpp -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/source/main.cpp -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/source/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/source/sha256.cpp -------------------------------------------------------------------------------- /bb3_payload/TADmuffinPC/source/tadpole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/TADmuffinPC/source/tadpole.cpp -------------------------------------------------------------------------------- /bb3_payload/demo/bb3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/demo/bb3.bin -------------------------------------------------------------------------------- /bb3_payload/demo/bb3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/demo/bb3.py -------------------------------------------------------------------------------- /bb3_payload/movable.sed_here.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/movable.sed_here.txt -------------------------------------------------------------------------------- /bb3_payload/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/readme.txt -------------------------------------------------------------------------------- /bb3_payload/taiwan/TADmuffin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/bb3_payload/taiwan/TADmuffin.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoogie/Bannerbomb3/HEAD/readme.md --------------------------------------------------------------------------------