Separated SCSI decoders by type.

This commit is contained in:
2015-10-19 02:59:32 +01:00
parent 45303f8a8d
commit b3d48cac37
17 changed files with 3475 additions and 2884 deletions

View File

@@ -1,3 +1,9 @@
2015-10-19 Natalia Portillo <claunia@claunia.com>
* Commands/Decode.cs:
* Commands/DeviceInfo.cs:
Separated SCSI decoders by type.
2015-10-19 Natalia Portillo <claunia@claunia.com>
* Commands/Decode.cs:

View File

@@ -82,7 +82,7 @@ namespace DiscImageChef.Commands
{
DicConsole.WriteLine("SCSI INQUIRY command response:");
DicConsole.WriteLine("================================================================================");
DicConsole.WriteLine(Decoders.SCSI.PrettifySCSIInquiry(inquiry));
DicConsole.WriteLine(Decoders.SCSI.Inquiry.PrettifySCSIInquiry(inquiry));
DicConsole.WriteLine("================================================================================");
}
break;

View File

@@ -81,7 +81,7 @@ namespace DiscImageChef.Commands
else
DicConsole.WriteLine("SCSI OK");
DicConsole.WriteLine(Decoders.SCSI.PrettifySCSIInquiry(inqBuf));
DicConsole.WriteLine(Decoders.SCSI.Inquiry.PrettifySCSIInquiry(inqBuf));
Structs.AtaErrorRegistersCHS errorRegisters;