├── README.md ├── client └── psvemmc │ ├── EmmcClient.cpp │ ├── EmmcClient.h │ ├── SceMbr.cpp │ ├── SceMbr.h │ └── psvemmc.cpp ├── driver ├── CMakeLists.txt ├── build.sh ├── debug.c ├── debug.h ├── defines.h ├── dump.c ├── dump.h ├── exports.yml ├── extra.yml ├── glog.c ├── glog.h ├── hooks_misc.c ├── hooks_misc.h ├── hooks_vfs_funcs.c ├── hooks_vfs_funcs.h ├── hooks_vfs_ops.c ├── hooks_vfs_ops.h ├── mtable.c ├── mtable.h ├── net.c ├── net.h ├── psvemmc.c ├── psvemmc.h ├── qsort.c ├── qsort.h ├── sdstor_log.c ├── sdstor_log.h ├── sdstor_types.h ├── sector_api.h ├── stacktrace.c ├── stacktrace.h ├── thread_test.c ├── thread_test.h └── vfs_types.h ├── error_logger ├── CMakeLists.txt ├── build.sh ├── error_logger.c ├── error_logger.yml ├── glog.c ├── glog.h ├── mtable.c ├── mtable.h ├── qsort.c ├── qsort.h ├── stacktrace.c └── stacktrace.h └── server ├── CMakeLists.txt ├── build.sh └── src ├── debugScreen.h ├── debugScreenFont.c └── main.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/README.md -------------------------------------------------------------------------------- /client/psvemmc/EmmcClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/client/psvemmc/EmmcClient.cpp -------------------------------------------------------------------------------- /client/psvemmc/EmmcClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/client/psvemmc/EmmcClient.h -------------------------------------------------------------------------------- /client/psvemmc/SceMbr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/client/psvemmc/SceMbr.cpp -------------------------------------------------------------------------------- /client/psvemmc/SceMbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/client/psvemmc/SceMbr.h -------------------------------------------------------------------------------- /client/psvemmc/psvemmc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/client/psvemmc/psvemmc.cpp -------------------------------------------------------------------------------- /driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/CMakeLists.txt -------------------------------------------------------------------------------- /driver/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/build.sh -------------------------------------------------------------------------------- /driver/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/debug.c -------------------------------------------------------------------------------- /driver/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/debug.h -------------------------------------------------------------------------------- /driver/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/defines.h -------------------------------------------------------------------------------- /driver/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/dump.c -------------------------------------------------------------------------------- /driver/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/dump.h -------------------------------------------------------------------------------- /driver/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/exports.yml -------------------------------------------------------------------------------- /driver/extra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/extra.yml -------------------------------------------------------------------------------- /driver/glog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/glog.c -------------------------------------------------------------------------------- /driver/glog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/glog.h -------------------------------------------------------------------------------- /driver/hooks_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/hooks_misc.c -------------------------------------------------------------------------------- /driver/hooks_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/hooks_misc.h -------------------------------------------------------------------------------- /driver/hooks_vfs_funcs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/hooks_vfs_funcs.c -------------------------------------------------------------------------------- /driver/hooks_vfs_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/hooks_vfs_funcs.h -------------------------------------------------------------------------------- /driver/hooks_vfs_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/hooks_vfs_ops.c -------------------------------------------------------------------------------- /driver/hooks_vfs_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/hooks_vfs_ops.h -------------------------------------------------------------------------------- /driver/mtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/mtable.c -------------------------------------------------------------------------------- /driver/mtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/mtable.h -------------------------------------------------------------------------------- /driver/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/net.c -------------------------------------------------------------------------------- /driver/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/net.h -------------------------------------------------------------------------------- /driver/psvemmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/psvemmc.c -------------------------------------------------------------------------------- /driver/psvemmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/psvemmc.h -------------------------------------------------------------------------------- /driver/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/qsort.c -------------------------------------------------------------------------------- /driver/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/qsort.h -------------------------------------------------------------------------------- /driver/sdstor_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/sdstor_log.c -------------------------------------------------------------------------------- /driver/sdstor_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/sdstor_log.h -------------------------------------------------------------------------------- /driver/sdstor_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/sdstor_types.h -------------------------------------------------------------------------------- /driver/sector_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/sector_api.h -------------------------------------------------------------------------------- /driver/stacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/stacktrace.c -------------------------------------------------------------------------------- /driver/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/stacktrace.h -------------------------------------------------------------------------------- /driver/thread_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/thread_test.c -------------------------------------------------------------------------------- /driver/thread_test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | int print_thread_info(); 4 | -------------------------------------------------------------------------------- /driver/vfs_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/driver/vfs_types.h -------------------------------------------------------------------------------- /error_logger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/CMakeLists.txt -------------------------------------------------------------------------------- /error_logger/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/build.sh -------------------------------------------------------------------------------- /error_logger/error_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/error_logger.c -------------------------------------------------------------------------------- /error_logger/error_logger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/error_logger.yml -------------------------------------------------------------------------------- /error_logger/glog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/glog.c -------------------------------------------------------------------------------- /error_logger/glog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/glog.h -------------------------------------------------------------------------------- /error_logger/mtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/mtable.c -------------------------------------------------------------------------------- /error_logger/mtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/mtable.h -------------------------------------------------------------------------------- /error_logger/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/qsort.c -------------------------------------------------------------------------------- /error_logger/qsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/qsort.h -------------------------------------------------------------------------------- /error_logger/stacktrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/stacktrace.c -------------------------------------------------------------------------------- /error_logger/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/error_logger/stacktrace.h -------------------------------------------------------------------------------- /server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/server/CMakeLists.txt -------------------------------------------------------------------------------- /server/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/server/build.sh -------------------------------------------------------------------------------- /server/src/debugScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/server/src/debugScreen.h -------------------------------------------------------------------------------- /server/src/debugScreenFont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/server/src/debugScreenFont.c -------------------------------------------------------------------------------- /server/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvemmc/HEAD/server/src/main.c --------------------------------------------------------------------------------