namespace SabreTools.Models.CHD
{
///
public class CompressedMapHeaderV5
{
///
/// Length of compressed map
///
public uint Length { get; set; }
///
/// Offset of first block
///
/// Actually UInt48
public ulong DataStart { get; set; }
///
/// CRC-16 of the map
///
public ushort CRC { get; set; }
///
/// Bits used to encode complength
///
public byte LengthBits { get; set; }
///
/// Bits used to encode self-refs
///
public byte HunkBits { get; set; }
///
/// Bits used to encode parent unit refs
///
public byte ParentUnitBits { get; set; }
///
/// Future use
///
public byte Reserved { get; set; }
}
}