Removed spurious fields on ATA error registers

This commit is contained in:
2017-12-23 02:00:31 +00:00
parent 9249a221fc
commit 01d34e1823
3 changed files with 0 additions and 10 deletions

View File

@@ -74,7 +74,6 @@ namespace DiscImageChef.Decoders.ATA
public byte CylinderLow;
public byte CylinderHigh;
public byte DeviceHead;
public byte Command;
}
public struct AtaErrorRegistersLba28
@@ -86,7 +85,6 @@ namespace DiscImageChef.Decoders.ATA
public byte LbaMid;
public byte LbaHigh;
public byte DeviceHead;
public byte Command;
}
public struct AtaErrorRegistersLba48
@@ -98,6 +96,5 @@ namespace DiscImageChef.Decoders.ATA
public ushort LbaMid;
public ushort LbaHigh;
public byte DeviceHead;
public byte Command;
}
}