├── README.md ├── kermit ├── Makefile ├── exports.exp ├── main.c └── sceSuspendForKernel.S ├── launcher ├── CMakeLists.txt ├── font.c ├── main.c ├── pspdebug.h ├── res │ ├── license.rif │ └── payload.bin └── scr_printf.c ├── payload ├── Makefile ├── build.mak ├── linker.x ├── main.c ├── sha1.c ├── sha1.h └── start.S └── pcbctool ├── Makefile ├── bn.c ├── crypto.c ├── crypto.h ├── ec.c ├── ecdsa.h ├── kirk_engine.c ├── kirk_engine.h └── pcbctool.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/README.md -------------------------------------------------------------------------------- /kermit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/kermit/Makefile -------------------------------------------------------------------------------- /kermit/exports.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/kermit/exports.exp -------------------------------------------------------------------------------- /kermit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/kermit/main.c -------------------------------------------------------------------------------- /kermit/sceSuspendForKernel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/kermit/sceSuspendForKernel.S -------------------------------------------------------------------------------- /launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /launcher/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/font.c -------------------------------------------------------------------------------- /launcher/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/main.c -------------------------------------------------------------------------------- /launcher/pspdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/pspdebug.h -------------------------------------------------------------------------------- /launcher/res/license.rif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/res/license.rif -------------------------------------------------------------------------------- /launcher/res/payload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/res/payload.bin -------------------------------------------------------------------------------- /launcher/scr_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/launcher/scr_printf.c -------------------------------------------------------------------------------- /payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/Makefile -------------------------------------------------------------------------------- /payload/build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/build.mak -------------------------------------------------------------------------------- /payload/linker.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/linker.x -------------------------------------------------------------------------------- /payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/main.c -------------------------------------------------------------------------------- /payload/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/sha1.c -------------------------------------------------------------------------------- /payload/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/sha1.h -------------------------------------------------------------------------------- /payload/start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/payload/start.S -------------------------------------------------------------------------------- /pcbctool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/Makefile -------------------------------------------------------------------------------- /pcbctool/bn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/bn.c -------------------------------------------------------------------------------- /pcbctool/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/crypto.c -------------------------------------------------------------------------------- /pcbctool/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/crypto.h -------------------------------------------------------------------------------- /pcbctool/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/ec.c -------------------------------------------------------------------------------- /pcbctool/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/ecdsa.h -------------------------------------------------------------------------------- /pcbctool/kirk_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/kirk_engine.c -------------------------------------------------------------------------------- /pcbctool/kirk_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/kirk_engine.h -------------------------------------------------------------------------------- /pcbctool/pcbctool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheOfficialFloW/VitaMips/HEAD/pcbctool/pcbctool.c --------------------------------------------------------------------------------