├── README.md ├── pics ├── pic1.png ├── pic10.png ├── pic2.png ├── pic3.png ├── pic4.png ├── pic5.png ├── pic6.png ├── pic7.png ├── pic8.png └── pic9.png └── src ├── cmake ├── CMakeLists.txt └── scripts │ └── ConfigureDependencies.cmake ├── common ├── CRC.cpp ├── CRC.h ├── CardRoutines.cpp ├── CardRoutines.h ├── FTDICommon.cpp ├── FTDICommon.h ├── FTDIInitialization.cpp ├── FTDIInitialization.h ├── GenericPins.h ├── MMCPins.h ├── SDPins.h └── cmake │ └── CMakeLists.txt ├── dump_exfat ├── DumpExfat.cpp ├── DumpExfat.h ├── ExFatTypes.h ├── cmake │ └── CMakeLists.txt └── main.cpp ├── generate.bat ├── mmc_card ├── CMD56Initialization.cpp ├── CMD56Initialization.h ├── KirkClient.cpp ├── KirkClient.h ├── MMCCommands.cpp ├── MMCCommands.h ├── MMCDump.cpp ├── MMCDump.h ├── MMCInitialization.cpp ├── MMCInitialization.h ├── MMCTypes.cpp ├── MMCTypes.h ├── cmake │ └── CMakeLists.txt └── main.cpp └── sd_card ├── SDCommands.cpp ├── SDCommands.h ├── SDInitialization.cpp ├── SDInitialization.h ├── SDTypes.cpp ├── SDTypes.h ├── cmake └── CMakeLists.txt └── main.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/README.md -------------------------------------------------------------------------------- /pics/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic1.png -------------------------------------------------------------------------------- /pics/pic10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic10.png -------------------------------------------------------------------------------- /pics/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic2.png -------------------------------------------------------------------------------- /pics/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic3.png -------------------------------------------------------------------------------- /pics/pic4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic4.png -------------------------------------------------------------------------------- /pics/pic5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic5.png -------------------------------------------------------------------------------- /pics/pic6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic6.png -------------------------------------------------------------------------------- /pics/pic7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic7.png -------------------------------------------------------------------------------- /pics/pic8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic8.png -------------------------------------------------------------------------------- /pics/pic9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/pics/pic9.png -------------------------------------------------------------------------------- /src/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/cmake/scripts/ConfigureDependencies.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/cmake/scripts/ConfigureDependencies.cmake -------------------------------------------------------------------------------- /src/common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/CRC.cpp -------------------------------------------------------------------------------- /src/common/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/CRC.h -------------------------------------------------------------------------------- /src/common/CardRoutines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/CardRoutines.cpp -------------------------------------------------------------------------------- /src/common/CardRoutines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/CardRoutines.h -------------------------------------------------------------------------------- /src/common/FTDICommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/FTDICommon.cpp -------------------------------------------------------------------------------- /src/common/FTDICommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/FTDICommon.h -------------------------------------------------------------------------------- /src/common/FTDIInitialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/FTDIInitialization.cpp -------------------------------------------------------------------------------- /src/common/FTDIInitialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/FTDIInitialization.h -------------------------------------------------------------------------------- /src/common/GenericPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/GenericPins.h -------------------------------------------------------------------------------- /src/common/MMCPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/MMCPins.h -------------------------------------------------------------------------------- /src/common/SDPins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/SDPins.h -------------------------------------------------------------------------------- /src/common/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/common/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/dump_exfat/DumpExfat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/dump_exfat/DumpExfat.cpp -------------------------------------------------------------------------------- /src/dump_exfat/DumpExfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/dump_exfat/DumpExfat.h -------------------------------------------------------------------------------- /src/dump_exfat/ExFatTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/dump_exfat/ExFatTypes.h -------------------------------------------------------------------------------- /src/dump_exfat/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/dump_exfat/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/dump_exfat/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/dump_exfat/main.cpp -------------------------------------------------------------------------------- /src/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/generate.bat -------------------------------------------------------------------------------- /src/mmc_card/CMD56Initialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/CMD56Initialization.cpp -------------------------------------------------------------------------------- /src/mmc_card/CMD56Initialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/CMD56Initialization.h -------------------------------------------------------------------------------- /src/mmc_card/KirkClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/KirkClient.cpp -------------------------------------------------------------------------------- /src/mmc_card/KirkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/KirkClient.h -------------------------------------------------------------------------------- /src/mmc_card/MMCCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCCommands.cpp -------------------------------------------------------------------------------- /src/mmc_card/MMCCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCCommands.h -------------------------------------------------------------------------------- /src/mmc_card/MMCDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCDump.cpp -------------------------------------------------------------------------------- /src/mmc_card/MMCDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCDump.h -------------------------------------------------------------------------------- /src/mmc_card/MMCInitialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCInitialization.cpp -------------------------------------------------------------------------------- /src/mmc_card/MMCInitialization.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | namespace psvcd { 6 | 7 | void InitializeMMCCard(FT_HANDLE ftHandle); 8 | 9 | }; -------------------------------------------------------------------------------- /src/mmc_card/MMCTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCTypes.cpp -------------------------------------------------------------------------------- /src/mmc_card/MMCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/MMCTypes.h -------------------------------------------------------------------------------- /src/mmc_card/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/mmc_card/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/mmc_card/main.cpp -------------------------------------------------------------------------------- /src/sd_card/SDCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/SDCommands.cpp -------------------------------------------------------------------------------- /src/sd_card/SDCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/SDCommands.h -------------------------------------------------------------------------------- /src/sd_card/SDInitialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/SDInitialization.cpp -------------------------------------------------------------------------------- /src/sd_card/SDInitialization.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | namespace psvcd { 6 | 7 | void InitializeSDCard(FT_HANDLE ftHandle); 8 | 9 | }; -------------------------------------------------------------------------------- /src/sd_card/SDTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/SDTypes.cpp -------------------------------------------------------------------------------- /src/sd_card/SDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/SDTypes.h -------------------------------------------------------------------------------- /src/sd_card/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /src/sd_card/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motoharu-gosuto/psvcd/HEAD/src/sd_card/main.cpp --------------------------------------------------------------------------------