├── CMakeLists.txt ├── README.md ├── app ├── debugScreen.h ├── debugScreenFont.c └── main.c ├── kernel ├── blit.c ├── blit.h ├── exports.yml ├── font.c └── main.c ├── res └── icon0.png └── screen └── screen1.jpg /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/README.md -------------------------------------------------------------------------------- /app/debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/app/debugScreen.h -------------------------------------------------------------------------------- /app/debugScreenFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/app/debugScreenFont.c -------------------------------------------------------------------------------- /app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/app/main.c -------------------------------------------------------------------------------- /kernel/blit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/kernel/blit.c -------------------------------------------------------------------------------- /kernel/blit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/kernel/blit.h -------------------------------------------------------------------------------- /kernel/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/kernel/exports.yml -------------------------------------------------------------------------------- /kernel/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/kernel/font.c -------------------------------------------------------------------------------- /kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/kernel/main.c -------------------------------------------------------------------------------- /res/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/res/icon0.png -------------------------------------------------------------------------------- /screen/screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/PSP2-batteryFixer/HEAD/screen/screen1.jpg --------------------------------------------------------------------------------