├── .gitignore ├── Makefile ├── README ├── icon.png ├── include ├── brahma.h ├── exploitdata.h ├── hid.h ├── menus.h ├── sochlp.h ├── textmenu.h └── utils.h ├── source ├── arm11.s ├── arm9.s ├── brahma.c ├── hid.c ├── main.c ├── menus.c ├── sochlp.c ├── textmenu.c └── utils.s └── tools └── client.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.elf 2 | *.3dsx 3 | *.smdh 4 | 5 | build 6 | output -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/README -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/icon.png -------------------------------------------------------------------------------- /include/brahma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/brahma.h -------------------------------------------------------------------------------- /include/exploitdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/exploitdata.h -------------------------------------------------------------------------------- /include/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/hid.h -------------------------------------------------------------------------------- /include/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/menus.h -------------------------------------------------------------------------------- /include/sochlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/sochlp.h -------------------------------------------------------------------------------- /include/textmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/textmenu.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/include/utils.h -------------------------------------------------------------------------------- /source/arm11.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/arm11.s -------------------------------------------------------------------------------- /source/arm9.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/arm9.s -------------------------------------------------------------------------------- /source/brahma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/brahma.c -------------------------------------------------------------------------------- /source/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/hid.c -------------------------------------------------------------------------------- /source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/main.c -------------------------------------------------------------------------------- /source/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/menus.c -------------------------------------------------------------------------------- /source/sochlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/sochlp.c -------------------------------------------------------------------------------- /source/textmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/textmenu.c -------------------------------------------------------------------------------- /source/utils.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/source/utils.s -------------------------------------------------------------------------------- /tools/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patois/Brahma/HEAD/tools/client.py --------------------------------------------------------------------------------