namespace BinaryObjectScanner.Models.N3DS { /// public sealed class CardInfoHeader { /// /// CARD2: Writable Address In Media Units (For 'On-Chip' Savedata). CARD1: Always 0xFFFFFFFF. /// public uint WritableAddressMediaUnits; /// /// Card Info Bitmask /// public uint CardInfoBitmask; /// /// Reserved /// public byte[] Reserved1; /// /// Filled size of cartridge /// public uint FilledSize; /// /// Reserved /// public byte[] Reserved2; /// /// Title version /// public ushort TitleVersion; /// /// Card revision /// public ushort CardRevision; /// /// Reserved /// public byte[] Reserved3; /// /// Title ID of CVer in included update partition /// public byte[] CVerTitleID; /// /// Version number of CVer in included update partition /// public ushort CVerVersionNumber; /// /// Reserved /// public byte[] Reserved4; } }