├── .gitignore ├── CMakeLists.txt ├── README.md ├── debugScreen.h ├── debugScreenFont.c ├── main.c └── sce_sys ├── icon0.png └── livearea └── contents ├── bg.png ├── startup.png └── template.xml /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/README.md -------------------------------------------------------------------------------- /debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/debugScreen.h -------------------------------------------------------------------------------- /debugScreenFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/debugScreenFont.c -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/main.c -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsldv/CardUnlock/HEAD/sce_sys/livearea/contents/template.xml --------------------------------------------------------------------------------