├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── .gitignore ├── DiscImageCreator.sln ├── DiscImageCreator ├── DiscImageCreator.cpp ├── DiscImageCreator.vcxproj ├── DiscImageCreator.vcxproj.filters ├── DiscImageCreator_linux.vcxproj ├── DiscImageCreator_linux.vcxproj.filters ├── _external │ ├── CheckSector.h │ ├── ECCEDC.cpp │ ├── NonStandardFunction.cpp │ ├── NonStandardFunction.h │ ├── abgx360.cpp │ ├── abgx360.h │ ├── aes.cpp │ ├── aesni.cpp │ ├── crc16ccitt.cpp │ ├── crc16ccitt.h │ ├── crc32.cpp │ ├── crc32.h │ ├── crc32ecma267.cpp │ ├── crc32ecma267.h │ ├── crc6itu.cpp │ ├── crc6itu.h │ ├── global.h │ ├── hfs_format.h │ ├── mbedtls │ │ ├── aes.h │ │ ├── aesni.h │ │ ├── check_config.h │ │ ├── config.h │ │ ├── padlock.h │ │ ├── platform.h │ │ ├── platform_time.h │ │ ├── platform_util.h │ │ └── threading.h │ ├── md5.h │ ├── md5c.cpp │ ├── platform_util.cpp │ ├── prngcd.cpp │ ├── prngcd.h │ ├── rijndael-alg-fst.cpp │ ├── rijndael-alg-fst.h │ ├── sha-private.h │ ├── sha.h │ ├── sha1.cpp │ ├── sha224-256.cpp │ ├── sha384-512.cpp │ ├── tinyxml2.cpp │ ├── tinyxml2.h │ ├── xxhash.cpp │ └── xxhash.h ├── _linux │ ├── defineForLinux.cpp │ ├── defineForLinux.h │ ├── ntddcdrm.h │ ├── ntddmmc.h │ └── scsi.h ├── buildDateTime.h.in ├── calcHash.cpp ├── calcHash.h ├── check.cpp ├── check.h ├── convert.cpp ├── convert.h ├── createBuildDateTime.bat ├── enum.h ├── execIoctl.cpp ├── execIoctl.h ├── execScsiCmd.cpp ├── execScsiCmd.h ├── execScsiCmdforCD.cpp ├── execScsiCmdforCD.h ├── execScsiCmdforCDCheck.cpp ├── execScsiCmdforCDCheck.h ├── execScsiCmdforDVD.cpp ├── execScsiCmdforDVD.h ├── execScsiCmdforFileSystem.cpp ├── execScsiCmdforFileSystem.h ├── execTapeCmd.cpp ├── execTapeCmd.h ├── fix.cpp ├── fix.h ├── forwardDeclaration.h ├── get.cpp ├── get.h ├── init.cpp ├── init.h ├── makefile ├── output.cpp ├── output.h ├── outputFileSystem.cpp ├── outputFileSystem.h ├── outputIoctlLog.cpp ├── outputIoctlLog.h ├── outputScsiCmdLog.cpp ├── outputScsiCmdLog.h ├── outputScsiCmdLogforCD.cpp ├── outputScsiCmdLogforCD.h ├── outputScsiCmdLogforDVD.cpp ├── outputScsiCmdLogforDVD.h ├── set.cpp ├── set.h ├── stdafx.cpp ├── stdafx.h ├── struct.h ├── targetver.h ├── xml.cpp └── xml.h ├── DiscImageCreator_linux.sln ├── LICENSE ├── README.md ├── Release_ANSI ├── C2ErrorProtect.txt ├── DVDRawBruteforce - Drive Sheet - Sheet1.tsv ├── Doc │ ├── ChangeLog.txt │ ├── Firmware&Tool.md │ ├── KnownIssue.txt │ ├── Reference.md │ ├── TestedDrive.txt │ └── Todo.txt ├── E_WISE.INI ├── E_WISE_W.EXE ├── ReadErrorProtect.txt ├── default.dat ├── driveOffset.txt └── i6comp.exe ├── meson.build └── test ├── cdi_0_sector17_valid_sync_valid_mode2_form1.bin ├── cdi_1_sector17_invalid_sync_valid_mode2_form1.bin ├── cdi_2_sector17_invalid_sync_valid_mode2_form1_edc_error.bin ├── cdi_3_sector17_invalid_sync_valid_mode2_form1_ecc_p_error.bin ├── cdi_4_sector17_invalid_sync_valid_mode2_form1_ecc_q_error.bin ├── cdi_5_sector17_invalid_sync_valid_mode2_form1_ecc_pq_error.bin ├── fmt_0_sector202347_valid_sync_valid_mode1_truncated.bin ├── ibmpc_0_sector0_valid_sync_valid_mode1.bin ├── ibmpc_1_sector0_invalid_sync_valid_mode1.bin ├── ibmpc_2_sector0_invalid_sync_valid_mode1_modified_edc_ecc.bin ├── ibmpc_3_sector0_invalid_sync_valid_mode1_edc_error.bin ├── ibmpc_4_sector0_invalid_sync_valid_mode1_ecc_p_error.bin ├── ibmpc_5_sector0_invalid_sync_valid_mode1_ecc_q_error.bin ├── ibmpc_6_sector0_invalid_sync_valid_mode1_ecc_pq_error.bin ├── psx_0_sector12_valid_sync_valid_mode2_form2_with_edc.bin ├── psx_1_sector12_invalid_sync_valid_mode2_form2_with_edc.bin ├── psx_2_sector12_invalid_sync_valid_mode2_form2_edc_error.bin ├── psx_3_sector12_valid_sync_valid_mode2_form2_no_edc.bin ├── psx_4_sector12_invalid_sync_valid_mode2_form2_no_edc.bin ├── psx_5_sector151739_valid_sync_valid_mode2_form1_no_edc.bin └── psx_6_sector151740_valid_sync_valid_mode2_form1_no_edc_ecc_pq_error.bin /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /DiscImageCreator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator.sln -------------------------------------------------------------------------------- /DiscImageCreator/DiscImageCreator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/DiscImageCreator.cpp -------------------------------------------------------------------------------- /DiscImageCreator/DiscImageCreator.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/DiscImageCreator.vcxproj -------------------------------------------------------------------------------- /DiscImageCreator/DiscImageCreator.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/DiscImageCreator.vcxproj.filters -------------------------------------------------------------------------------- /DiscImageCreator/DiscImageCreator_linux.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/DiscImageCreator_linux.vcxproj -------------------------------------------------------------------------------- /DiscImageCreator/DiscImageCreator_linux.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/DiscImageCreator_linux.vcxproj.filters -------------------------------------------------------------------------------- /DiscImageCreator/_external/CheckSector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/CheckSector.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/ECCEDC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/ECCEDC.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/NonStandardFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/NonStandardFunction.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/NonStandardFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/NonStandardFunction.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/abgx360.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/abgx360.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/abgx360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/abgx360.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/aes.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/aesni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/aesni.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc16ccitt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc16ccitt.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc16ccitt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc16ccitt.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc32.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc32.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc32ecma267.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc32ecma267.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc32ecma267.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc32ecma267.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc6itu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc6itu.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/crc6itu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/crc6itu.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/global.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/hfs_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/hfs_format.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/aes.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/aesni.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/check_config.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/config.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/padlock.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/platform.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/platform_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/platform_time.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/platform_util.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/mbedtls/threading.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/md5.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/md5c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/md5c.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/platform_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/platform_util.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/prngcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/prngcd.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/prngcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/prngcd.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/rijndael-alg-fst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/rijndael-alg-fst.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/rijndael-alg-fst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/rijndael-alg-fst.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/sha-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/sha-private.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/sha.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/sha1.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/sha224-256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/sha224-256.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/sha384-512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/sha384-512.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/tinyxml2.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/tinyxml2.h -------------------------------------------------------------------------------- /DiscImageCreator/_external/xxhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/xxhash.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_external/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_external/xxhash.h -------------------------------------------------------------------------------- /DiscImageCreator/_linux/defineForLinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_linux/defineForLinux.cpp -------------------------------------------------------------------------------- /DiscImageCreator/_linux/defineForLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_linux/defineForLinux.h -------------------------------------------------------------------------------- /DiscImageCreator/_linux/ntddcdrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_linux/ntddcdrm.h -------------------------------------------------------------------------------- /DiscImageCreator/_linux/ntddmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_linux/ntddmmc.h -------------------------------------------------------------------------------- /DiscImageCreator/_linux/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/_linux/scsi.h -------------------------------------------------------------------------------- /DiscImageCreator/buildDateTime.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/buildDateTime.h.in -------------------------------------------------------------------------------- /DiscImageCreator/calcHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/calcHash.cpp -------------------------------------------------------------------------------- /DiscImageCreator/calcHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/calcHash.h -------------------------------------------------------------------------------- /DiscImageCreator/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/check.cpp -------------------------------------------------------------------------------- /DiscImageCreator/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/check.h -------------------------------------------------------------------------------- /DiscImageCreator/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/convert.cpp -------------------------------------------------------------------------------- /DiscImageCreator/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/convert.h -------------------------------------------------------------------------------- /DiscImageCreator/createBuildDateTime.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/createBuildDateTime.bat -------------------------------------------------------------------------------- /DiscImageCreator/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/enum.h -------------------------------------------------------------------------------- /DiscImageCreator/execIoctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execIoctl.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execIoctl.h -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmd.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmd.h -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforCD.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforCD.h -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforCDCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforCDCheck.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforCDCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforCDCheck.h -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforDVD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforDVD.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforDVD.h -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforFileSystem.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execScsiCmdforFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execScsiCmdforFileSystem.h -------------------------------------------------------------------------------- /DiscImageCreator/execTapeCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execTapeCmd.cpp -------------------------------------------------------------------------------- /DiscImageCreator/execTapeCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/execTapeCmd.h -------------------------------------------------------------------------------- /DiscImageCreator/fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/fix.cpp -------------------------------------------------------------------------------- /DiscImageCreator/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/fix.h -------------------------------------------------------------------------------- /DiscImageCreator/forwardDeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/forwardDeclaration.h -------------------------------------------------------------------------------- /DiscImageCreator/get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/get.cpp -------------------------------------------------------------------------------- /DiscImageCreator/get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/get.h -------------------------------------------------------------------------------- /DiscImageCreator/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/init.cpp -------------------------------------------------------------------------------- /DiscImageCreator/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/init.h -------------------------------------------------------------------------------- /DiscImageCreator/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/makefile -------------------------------------------------------------------------------- /DiscImageCreator/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/output.cpp -------------------------------------------------------------------------------- /DiscImageCreator/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/output.h -------------------------------------------------------------------------------- /DiscImageCreator/outputFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputFileSystem.cpp -------------------------------------------------------------------------------- /DiscImageCreator/outputFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputFileSystem.h -------------------------------------------------------------------------------- /DiscImageCreator/outputIoctlLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputIoctlLog.cpp -------------------------------------------------------------------------------- /DiscImageCreator/outputIoctlLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputIoctlLog.h -------------------------------------------------------------------------------- /DiscImageCreator/outputScsiCmdLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputScsiCmdLog.cpp -------------------------------------------------------------------------------- /DiscImageCreator/outputScsiCmdLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputScsiCmdLog.h -------------------------------------------------------------------------------- /DiscImageCreator/outputScsiCmdLogforCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputScsiCmdLogforCD.cpp -------------------------------------------------------------------------------- /DiscImageCreator/outputScsiCmdLogforCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputScsiCmdLogforCD.h -------------------------------------------------------------------------------- /DiscImageCreator/outputScsiCmdLogforDVD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputScsiCmdLogforDVD.cpp -------------------------------------------------------------------------------- /DiscImageCreator/outputScsiCmdLogforDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/outputScsiCmdLogforDVD.h -------------------------------------------------------------------------------- /DiscImageCreator/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/set.cpp -------------------------------------------------------------------------------- /DiscImageCreator/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/set.h -------------------------------------------------------------------------------- /DiscImageCreator/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/stdafx.cpp -------------------------------------------------------------------------------- /DiscImageCreator/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/stdafx.h -------------------------------------------------------------------------------- /DiscImageCreator/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/struct.h -------------------------------------------------------------------------------- /DiscImageCreator/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/targetver.h -------------------------------------------------------------------------------- /DiscImageCreator/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/xml.cpp -------------------------------------------------------------------------------- /DiscImageCreator/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator/xml.h -------------------------------------------------------------------------------- /DiscImageCreator_linux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/DiscImageCreator_linux.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/README.md -------------------------------------------------------------------------------- /Release_ANSI/C2ErrorProtect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/C2ErrorProtect.txt -------------------------------------------------------------------------------- /Release_ANSI/DVDRawBruteforce - Drive Sheet - Sheet1.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/DVDRawBruteforce - Drive Sheet - Sheet1.tsv -------------------------------------------------------------------------------- /Release_ANSI/Doc/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/Doc/ChangeLog.txt -------------------------------------------------------------------------------- /Release_ANSI/Doc/Firmware&Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/Doc/Firmware&Tool.md -------------------------------------------------------------------------------- /Release_ANSI/Doc/KnownIssue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/Doc/KnownIssue.txt -------------------------------------------------------------------------------- /Release_ANSI/Doc/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/Doc/Reference.md -------------------------------------------------------------------------------- /Release_ANSI/Doc/TestedDrive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/Doc/TestedDrive.txt -------------------------------------------------------------------------------- /Release_ANSI/Doc/Todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/Doc/Todo.txt -------------------------------------------------------------------------------- /Release_ANSI/E_WISE.INI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/E_WISE.INI -------------------------------------------------------------------------------- /Release_ANSI/E_WISE_W.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/E_WISE_W.EXE -------------------------------------------------------------------------------- /Release_ANSI/ReadErrorProtect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/ReadErrorProtect.txt -------------------------------------------------------------------------------- /Release_ANSI/default.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/default.dat -------------------------------------------------------------------------------- /Release_ANSI/driveOffset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/driveOffset.txt -------------------------------------------------------------------------------- /Release_ANSI/i6comp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/Release_ANSI/i6comp.exe -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/meson.build -------------------------------------------------------------------------------- /test/cdi_0_sector17_valid_sync_valid_mode2_form1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/cdi_0_sector17_valid_sync_valid_mode2_form1.bin -------------------------------------------------------------------------------- /test/cdi_1_sector17_invalid_sync_valid_mode2_form1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/cdi_1_sector17_invalid_sync_valid_mode2_form1.bin -------------------------------------------------------------------------------- /test/cdi_2_sector17_invalid_sync_valid_mode2_form1_edc_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/cdi_2_sector17_invalid_sync_valid_mode2_form1_edc_error.bin -------------------------------------------------------------------------------- /test/cdi_3_sector17_invalid_sync_valid_mode2_form1_ecc_p_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/cdi_3_sector17_invalid_sync_valid_mode2_form1_ecc_p_error.bin -------------------------------------------------------------------------------- /test/cdi_4_sector17_invalid_sync_valid_mode2_form1_ecc_q_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/cdi_4_sector17_invalid_sync_valid_mode2_form1_ecc_q_error.bin -------------------------------------------------------------------------------- /test/cdi_5_sector17_invalid_sync_valid_mode2_form1_ecc_pq_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/cdi_5_sector17_invalid_sync_valid_mode2_form1_ecc_pq_error.bin -------------------------------------------------------------------------------- /test/fmt_0_sector202347_valid_sync_valid_mode1_truncated.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/fmt_0_sector202347_valid_sync_valid_mode1_truncated.bin -------------------------------------------------------------------------------- /test/ibmpc_0_sector0_valid_sync_valid_mode1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_0_sector0_valid_sync_valid_mode1.bin -------------------------------------------------------------------------------- /test/ibmpc_1_sector0_invalid_sync_valid_mode1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_1_sector0_invalid_sync_valid_mode1.bin -------------------------------------------------------------------------------- /test/ibmpc_2_sector0_invalid_sync_valid_mode1_modified_edc_ecc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_2_sector0_invalid_sync_valid_mode1_modified_edc_ecc.bin -------------------------------------------------------------------------------- /test/ibmpc_3_sector0_invalid_sync_valid_mode1_edc_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_3_sector0_invalid_sync_valid_mode1_edc_error.bin -------------------------------------------------------------------------------- /test/ibmpc_4_sector0_invalid_sync_valid_mode1_ecc_p_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_4_sector0_invalid_sync_valid_mode1_ecc_p_error.bin -------------------------------------------------------------------------------- /test/ibmpc_5_sector0_invalid_sync_valid_mode1_ecc_q_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_5_sector0_invalid_sync_valid_mode1_ecc_q_error.bin -------------------------------------------------------------------------------- /test/ibmpc_6_sector0_invalid_sync_valid_mode1_ecc_pq_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/ibmpc_6_sector0_invalid_sync_valid_mode1_ecc_pq_error.bin -------------------------------------------------------------------------------- /test/psx_0_sector12_valid_sync_valid_mode2_form2_with_edc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_0_sector12_valid_sync_valid_mode2_form2_with_edc.bin -------------------------------------------------------------------------------- /test/psx_1_sector12_invalid_sync_valid_mode2_form2_with_edc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_1_sector12_invalid_sync_valid_mode2_form2_with_edc.bin -------------------------------------------------------------------------------- /test/psx_2_sector12_invalid_sync_valid_mode2_form2_edc_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_2_sector12_invalid_sync_valid_mode2_form2_edc_error.bin -------------------------------------------------------------------------------- /test/psx_3_sector12_valid_sync_valid_mode2_form2_no_edc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_3_sector12_valid_sync_valid_mode2_form2_no_edc.bin -------------------------------------------------------------------------------- /test/psx_4_sector12_invalid_sync_valid_mode2_form2_no_edc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_4_sector12_invalid_sync_valid_mode2_form2_no_edc.bin -------------------------------------------------------------------------------- /test/psx_5_sector151739_valid_sync_valid_mode2_form1_no_edc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_5_sector151739_valid_sync_valid_mode2_form1_no_edc.bin -------------------------------------------------------------------------------- /test/psx_6_sector151740_valid_sync_valid_mode2_form1_no_edc_ecc_pq_error.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saramibreak/DiscImageCreator/HEAD/test/psx_6_sector151740_valid_sync_valid_mode2_form1_no_edc_ecc_pq_error.bin --------------------------------------------------------------------------------