├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── include ├── config.h ├── fs.h ├── gui.h ├── hardware.h ├── kernel.h ├── log.h ├── misc.h ├── nnid.h ├── service.h ├── storage.h ├── system.h ├── textures.h ├── utils.h └── wifi.h ├── res ├── app.rsf ├── banner.png ├── banner.wav ├── drawable │ ├── A.png │ ├── B.png │ ├── C_stick.png │ ├── D_pad_h.png │ ├── D_pad_v.png │ ├── L.png │ ├── R.png │ ├── X.png │ ├── Y.png │ ├── ZL.png │ ├── ZR.png │ ├── circle_pad.png │ ├── config.png │ ├── controller.png │ ├── cursor.png │ ├── drive.png │ ├── exit.png │ ├── home.png │ ├── icon.png │ ├── kernel.png │ ├── misc.png │ ├── nnid.png │ ├── power.png │ ├── sprites.t3s │ ├── start_select.png │ ├── storage.png │ ├── system.png │ ├── volume.png │ └── wifi.png └── logo.lz11 └── source ├── config.cpp ├── fs.cpp ├── gui.cpp ├── hardware.cpp ├── kernel.cpp ├── log.cpp ├── main.cpp ├── misc.cpp ├── nnid.cpp ├── service.cpp ├── storage.cpp ├── system.cpp ├── textures.cpp ├── utils.cpp └── wifi.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/README.md -------------------------------------------------------------------------------- /include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/config.h -------------------------------------------------------------------------------- /include/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/fs.h -------------------------------------------------------------------------------- /include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/gui.h -------------------------------------------------------------------------------- /include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/hardware.h -------------------------------------------------------------------------------- /include/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/kernel.h -------------------------------------------------------------------------------- /include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/log.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/nnid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/nnid.h -------------------------------------------------------------------------------- /include/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/service.h -------------------------------------------------------------------------------- /include/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/storage.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/system.h -------------------------------------------------------------------------------- /include/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/textures.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/include/wifi.h -------------------------------------------------------------------------------- /res/app.rsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/app.rsf -------------------------------------------------------------------------------- /res/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/banner.png -------------------------------------------------------------------------------- /res/banner.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/banner.wav -------------------------------------------------------------------------------- /res/drawable/A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/A.png -------------------------------------------------------------------------------- /res/drawable/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/B.png -------------------------------------------------------------------------------- /res/drawable/C_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/C_stick.png -------------------------------------------------------------------------------- /res/drawable/D_pad_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/D_pad_h.png -------------------------------------------------------------------------------- /res/drawable/D_pad_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/D_pad_v.png -------------------------------------------------------------------------------- /res/drawable/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/L.png -------------------------------------------------------------------------------- /res/drawable/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/R.png -------------------------------------------------------------------------------- /res/drawable/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/X.png -------------------------------------------------------------------------------- /res/drawable/Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/Y.png -------------------------------------------------------------------------------- /res/drawable/ZL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/ZL.png -------------------------------------------------------------------------------- /res/drawable/ZR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/ZR.png -------------------------------------------------------------------------------- /res/drawable/circle_pad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/circle_pad.png -------------------------------------------------------------------------------- /res/drawable/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/config.png -------------------------------------------------------------------------------- /res/drawable/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/controller.png -------------------------------------------------------------------------------- /res/drawable/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/cursor.png -------------------------------------------------------------------------------- /res/drawable/drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/drive.png -------------------------------------------------------------------------------- /res/drawable/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/exit.png -------------------------------------------------------------------------------- /res/drawable/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/home.png -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/icon.png -------------------------------------------------------------------------------- /res/drawable/kernel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/kernel.png -------------------------------------------------------------------------------- /res/drawable/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/misc.png -------------------------------------------------------------------------------- /res/drawable/nnid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/nnid.png -------------------------------------------------------------------------------- /res/drawable/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/power.png -------------------------------------------------------------------------------- /res/drawable/sprites.t3s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/sprites.t3s -------------------------------------------------------------------------------- /res/drawable/start_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/start_select.png -------------------------------------------------------------------------------- /res/drawable/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/storage.png -------------------------------------------------------------------------------- /res/drawable/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/system.png -------------------------------------------------------------------------------- /res/drawable/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/volume.png -------------------------------------------------------------------------------- /res/drawable/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/drawable/wifi.png -------------------------------------------------------------------------------- /res/logo.lz11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/res/logo.lz11 -------------------------------------------------------------------------------- /source/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/config.cpp -------------------------------------------------------------------------------- /source/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/fs.cpp -------------------------------------------------------------------------------- /source/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/gui.cpp -------------------------------------------------------------------------------- /source/hardware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/hardware.cpp -------------------------------------------------------------------------------- /source/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/kernel.cpp -------------------------------------------------------------------------------- /source/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/log.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/misc.cpp -------------------------------------------------------------------------------- /source/nnid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/nnid.cpp -------------------------------------------------------------------------------- /source/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/service.cpp -------------------------------------------------------------------------------- /source/storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/storage.cpp -------------------------------------------------------------------------------- /source/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/system.cpp -------------------------------------------------------------------------------- /source/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/textures.cpp -------------------------------------------------------------------------------- /source/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/utils.cpp -------------------------------------------------------------------------------- /source/wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joel16/3DSident/HEAD/source/wifi.cpp --------------------------------------------------------------------------------