Add Hi-MD type for SCSI MODE header.

This commit is contained in:
2020-01-30 21:50:07 +00:00
parent 3c5b8db654
commit 782b8c4bb8
2 changed files with 454 additions and 225 deletions

View File

@@ -94,8 +94,9 @@ namespace DiscImageChef.Decoders.SCSI
case MediumTypes.WORM_RW:
return "a combination of write-once and erasable optical";
*/
case MediumTypes.DOW: return"a direct-overwrite optical";
default: return$"Unknown medium type 0x{(byte)type:X2}";
case MediumTypes.DOW: return"a direct-overwrite optical";
case MediumTypes.HiMD: return"a Sony Hi-MD disc";
default: return$"Unknown medium type 0x{(byte)type:X2}";
}
}