Implement ATA/ATAPI IDENTIFY decoder.

This commit is contained in:
2015-10-17 01:26:17 +01:00
parent 6e7ed8e743
commit 12842dccfc
6 changed files with 1900 additions and 26 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,10 @@
2015-10-17 Natalia Portillo <claunia@claunia.com>
* ATA.cs:
* SCSI.cs:
* DiscImageChef.Decoders.csproj:
Implement ATA/ATAPI IDENTIFY decoder.
2015-10-16 Natalia Portillo <claunia@claunia.com>
* ATA.cs:

View File

@@ -10,7 +10,6 @@
<RootNamespace>DiscImageChef.Decoders</RootNamespace>
<AssemblyName>DiscImageChef.Decoders</AssemblyName>
<ReleaseVersion>2.2</ReleaseVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>

View File

@@ -74,7 +74,7 @@ namespace DiscImageChef.Decoders
SCSIPQVendorMask = 0x04
}
enum SCSIPeripheralDeviceTypes : byte
public enum SCSIPeripheralDeviceTypes : byte
{
/// <summary>
/// Direct-access device

View File

@@ -1,3 +1,8 @@
2015-10-17 Natalia Portillo <claunia@claunia.com>
* DiscImageChef.csproj:
Implement ATA/ATAPI IDENTIFY decoder.
2015-10-15 Natalia Portillo <claunia@claunia.com>
* Commands/DeviceInfo.cs:

View File

@@ -9,7 +9,6 @@
<OutputType>Exe</OutputType>
<RootNamespace>DiscImageChef</RootNamespace>
<AssemblyName>DiscImageChef</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<ReleaseVersion>2.2</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">