Added support for LS-240 SuperDisk and FD32MB.

This commit is contained in:
2017-11-29 15:54:39 +00:00
parent e9e1e456ad
commit 2763bef273
5 changed files with 29 additions and 0 deletions

View File

@@ -107,13 +107,22 @@ namespace DiscImageChef.CommonTypes
{
if(blockSize == 512)
{
if(blocks == 469504)
return MediaType.LS240;
if(blocks == 246528)
return MediaType.LS120;
if(blocks == 65536)
return MediaType.FD32MB;
if(blocks == 2880)
return MediaType.DOS_35_HD;
if(blocks == 1440)
return MediaType.DOS_35_DS_DD_9;
}
else if(blockSize == 1024)
{
if(blocks == 1232)
return MediaType.NEC_35_HD_8;
}
return MediaType.Unknown;
}