├── .gitignore ├── LICENSE ├── README.md ├── app ├── CMakeLists.txt ├── build.sh ├── sce_sys │ ├── icon0.png │ └── livearea │ │ └── contents │ │ ├── bg.png │ │ ├── startup.png │ │ └── template.xml └── src │ ├── debugScreen.h │ ├── debugScreenFont.c │ ├── main.c │ ├── sfo_utils.c │ └── sfo_utils.h ├── compression └── dictionaryRandomAccess.c ├── driver ├── CMakeLists.txt ├── build.sh ├── cmd56_key.c ├── cmd56_key.h ├── defines.h ├── dumper.c ├── dumper.h ├── exports.yml ├── functions.c ├── functions.h ├── global_hooks.c ├── global_hooks.h ├── global_log.c ├── global_log.h ├── hook_ids.c ├── hook_ids.h ├── ins_rem_card.c ├── ins_rem_card.h ├── mbr_types.h ├── media_id_emu.c ├── media_id_emu.h ├── mmc_emu.c ├── mmc_emu.h ├── mmc_reg.h ├── physical_mmc.c ├── physical_mmc.h ├── physical_sd.c ├── physical_sd.h ├── psv_types.h ├── psvgamesd.c ├── psvgamesd_api.c ├── psvgamesd_api.h ├── reader.c ├── reader.h ├── reg_common.c ├── reg_common.h ├── sd_emu.c ├── sd_emu.h ├── sd_reg.h ├── sector_api.h ├── utils.c ├── utils.h ├── virtual_mmc.c ├── virtual_mmc.h ├── virtual_sd.c └── virtual_sd.h └── sdioctl └── sdioctl └── sdioctl.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/build.sh -------------------------------------------------------------------------------- /app/sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/sce_sys/icon0.png -------------------------------------------------------------------------------- /app/sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /app/sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /app/sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /app/src/debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/src/debugScreen.h -------------------------------------------------------------------------------- /app/src/debugScreenFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/src/debugScreenFont.c -------------------------------------------------------------------------------- /app/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/src/main.c -------------------------------------------------------------------------------- /app/src/sfo_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/src/sfo_utils.c -------------------------------------------------------------------------------- /app/src/sfo_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/app/src/sfo_utils.h -------------------------------------------------------------------------------- /compression/dictionaryRandomAccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/compression/dictionaryRandomAccess.c -------------------------------------------------------------------------------- /driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/CMakeLists.txt -------------------------------------------------------------------------------- /driver/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/build.sh -------------------------------------------------------------------------------- /driver/cmd56_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/cmd56_key.c -------------------------------------------------------------------------------- /driver/cmd56_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/cmd56_key.h -------------------------------------------------------------------------------- /driver/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/defines.h -------------------------------------------------------------------------------- /driver/dumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/dumper.c -------------------------------------------------------------------------------- /driver/dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/dumper.h -------------------------------------------------------------------------------- /driver/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/exports.yml -------------------------------------------------------------------------------- /driver/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/functions.c -------------------------------------------------------------------------------- /driver/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/functions.h -------------------------------------------------------------------------------- /driver/global_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/global_hooks.c -------------------------------------------------------------------------------- /driver/global_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/global_hooks.h -------------------------------------------------------------------------------- /driver/global_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/global_log.c -------------------------------------------------------------------------------- /driver/global_log.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | extern char sprintfBuffer[256]; 4 | 5 | void FILE_GLOBAL_WRITE_LEN(char* msg); 6 | -------------------------------------------------------------------------------- /driver/hook_ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/hook_ids.c -------------------------------------------------------------------------------- /driver/hook_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/hook_ids.h -------------------------------------------------------------------------------- /driver/ins_rem_card.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/ins_rem_card.c -------------------------------------------------------------------------------- /driver/ins_rem_card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/ins_rem_card.h -------------------------------------------------------------------------------- /driver/mbr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/mbr_types.h -------------------------------------------------------------------------------- /driver/media_id_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/media_id_emu.c -------------------------------------------------------------------------------- /driver/media_id_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/media_id_emu.h -------------------------------------------------------------------------------- /driver/mmc_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/mmc_emu.c -------------------------------------------------------------------------------- /driver/mmc_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/mmc_emu.h -------------------------------------------------------------------------------- /driver/mmc_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/mmc_reg.h -------------------------------------------------------------------------------- /driver/physical_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/physical_mmc.c -------------------------------------------------------------------------------- /driver/physical_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/physical_mmc.h -------------------------------------------------------------------------------- /driver/physical_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/physical_sd.c -------------------------------------------------------------------------------- /driver/physical_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/physical_sd.h -------------------------------------------------------------------------------- /driver/psv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/psv_types.h -------------------------------------------------------------------------------- /driver/psvgamesd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/psvgamesd.c -------------------------------------------------------------------------------- /driver/psvgamesd_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/psvgamesd_api.c -------------------------------------------------------------------------------- /driver/psvgamesd_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/psvgamesd_api.h -------------------------------------------------------------------------------- /driver/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/reader.c -------------------------------------------------------------------------------- /driver/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/reader.h -------------------------------------------------------------------------------- /driver/reg_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/reg_common.c -------------------------------------------------------------------------------- /driver/reg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/reg_common.h -------------------------------------------------------------------------------- /driver/sd_emu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/sd_emu.c -------------------------------------------------------------------------------- /driver/sd_emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/sd_emu.h -------------------------------------------------------------------------------- /driver/sd_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/sd_reg.h -------------------------------------------------------------------------------- /driver/sector_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/sector_api.h -------------------------------------------------------------------------------- /driver/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/utils.c -------------------------------------------------------------------------------- /driver/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/utils.h -------------------------------------------------------------------------------- /driver/virtual_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/virtual_mmc.c -------------------------------------------------------------------------------- /driver/virtual_mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/virtual_mmc.h -------------------------------------------------------------------------------- /driver/virtual_sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/virtual_sd.c -------------------------------------------------------------------------------- /driver/virtual_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/driver/virtual_sd.h -------------------------------------------------------------------------------- /sdioctl/sdioctl/sdioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvgamesd/HEAD/sdioctl/sdioctl/sdioctl.cpp --------------------------------------------------------------------------------