mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
259 lines
6.6 KiB
C#
259 lines
6.6 KiB
C#
namespace BinaryObjectScanner.Models.Nitro
|
|
{
|
|
/// <summary>
|
|
/// Nintendo DSi extended cart header
|
|
/// </summary>
|
|
/// <see href="https://dsibrew.org/wiki/DSi_cartridge_header"/>
|
|
public sealed class ExtendedDSiHeader
|
|
{
|
|
/// <summary>
|
|
/// Global MBK1..MBK5 Settings
|
|
/// </summary>
|
|
public uint[] GlobalMBK15Settings;
|
|
|
|
/// <summary>
|
|
/// Local MBK6..MBK8 Settings for ARM9
|
|
/// </summary>
|
|
public uint[] LocalMBK68SettingsARM9;
|
|
|
|
/// <summary>
|
|
/// Local MBK6..MBK8 Settings for ARM7
|
|
/// </summary>
|
|
public uint[] LocalMBK68SettingsARM7;
|
|
|
|
/// <summary>
|
|
/// Global MBK9 Setting
|
|
/// </summary>
|
|
public uint GlobalMBK9Setting;
|
|
|
|
/// <summary>
|
|
/// Region Flags
|
|
/// </summary>
|
|
public uint RegionFlags;
|
|
|
|
/// <summary>
|
|
/// Access control
|
|
/// </summary>
|
|
public uint AccessControl;
|
|
|
|
/// <summary>
|
|
/// ARM7 SCFG EXT mask (controls which devices to enable)
|
|
/// </summary>
|
|
public uint ARM7SCFGEXTMask;
|
|
|
|
/// <summary>
|
|
/// Reserved/flags? When bit2 of byte 0x1bf is set, usage of banner.sav from the title data dir is enabled.(additional banner data)
|
|
/// </summary>
|
|
public uint ReservedFlags;
|
|
|
|
/// <summary>
|
|
/// ARM9i rom offset
|
|
/// </summary>
|
|
public uint ARM9iRomOffset;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public uint Reserved3;
|
|
|
|
/// <summary>
|
|
/// ARM9i load address
|
|
/// </summary>
|
|
public uint ARM9iLoadAddress;
|
|
|
|
/// <summary>
|
|
/// ARM9i size;
|
|
/// </summary>
|
|
public uint ARM9iSize;
|
|
|
|
/// <summary>
|
|
/// ARM7i rom offset
|
|
/// </summary>
|
|
public uint ARM7iRomOffset;
|
|
|
|
/// <summary>
|
|
/// Pointer to base address where various structures and parameters are passed to the title - what is that???
|
|
/// </summary>
|
|
public uint Reserved4;
|
|
|
|
/// <summary>
|
|
/// ARM7i load address
|
|
/// </summary>
|
|
public uint ARM7iLoadAddress;
|
|
|
|
/// <summary>
|
|
/// ARM7i size;
|
|
/// </summary>
|
|
public uint ARM7iSize;
|
|
|
|
/// <summary>
|
|
/// Digest NTR region offset
|
|
/// </summary>
|
|
public uint DigestNTRRegionOffset;
|
|
|
|
/// <summary>
|
|
/// Digest NTR region length
|
|
/// </summary>
|
|
public uint DigestNTRRegionLength;
|
|
|
|
// <summary>
|
|
/// Digest TWL region offset
|
|
/// </summary>
|
|
public uint DigestTWLRegionOffset;
|
|
|
|
/// <summary>
|
|
/// Digest TWL region length
|
|
/// </summary>
|
|
public uint DigestTWLRegionLength;
|
|
|
|
// <summary>
|
|
/// Digest Sector Hashtable region offset
|
|
/// </summary>
|
|
public uint DigestSectorHashtableRegionOffset;
|
|
|
|
/// <summary>
|
|
/// Digest Sector Hashtable region length
|
|
/// </summary>
|
|
public uint DigestSectorHashtableRegionLength;
|
|
|
|
// <summary>
|
|
/// Digest Block Hashtable region offset
|
|
/// </summary>
|
|
public uint DigestBlockHashtableRegionOffset;
|
|
|
|
/// <summary>
|
|
/// Digest Block Hashtable region length
|
|
/// </summary>
|
|
public uint DigestBlockHashtableRegionLength;
|
|
|
|
/// <summary>
|
|
/// Digest Sector size
|
|
/// </summary>
|
|
public uint DigestSectorSize;
|
|
|
|
/// <summary>
|
|
/// Digeset Block Sectorount
|
|
/// </summary>
|
|
public uint DigestBlockSectorCount;
|
|
|
|
/// <summary>
|
|
/// Icon Banner Size (usually 0x23C0)
|
|
/// </summary>
|
|
public uint IconBannerSize;
|
|
|
|
/// <summary>
|
|
/// Unknown (used by DSi)
|
|
/// </summary>
|
|
public uint Unknown1;
|
|
|
|
/// <summary>
|
|
/// NTR+TWL region ROM size (total size including DSi area)
|
|
/// </summary>
|
|
public uint NTRTWLRegionRomSize;
|
|
|
|
/// <summary>
|
|
/// Unknown (used by DSi)
|
|
/// </summary>
|
|
public byte[] Unknown2;
|
|
|
|
/// <summary>
|
|
/// Modcrypt area 1 offset
|
|
/// </summary>
|
|
public uint ModcryptArea1Offset;
|
|
|
|
/// <summary>
|
|
/// Modcrypt area 1 size
|
|
/// </summary>
|
|
public uint ModcryptArea1Size;
|
|
|
|
/// <summary>
|
|
/// Modcrypt area 2 offset
|
|
/// </summary>
|
|
public uint ModcryptArea2Offset;
|
|
|
|
/// <summary>
|
|
/// Modcrypt area 2 size
|
|
/// </summary>
|
|
public uint ModcryptArea2Size;
|
|
|
|
/// <summary>
|
|
/// Title ID
|
|
/// </summary>
|
|
public byte[] TitleID;
|
|
|
|
/// <summary>
|
|
/// DSiWare: "public.sav" size
|
|
/// </summary>
|
|
public uint DSiWarePublicSavSize;
|
|
|
|
/// <summary>
|
|
/// DSiWare: "private.sav" size
|
|
/// </summary>
|
|
public uint DSiWarePrivateSavSize;
|
|
|
|
/// <summary>
|
|
/// Reserved (zero)
|
|
/// </summary>
|
|
public byte[] ReservedZero;
|
|
|
|
/// <summary>
|
|
/// Unknown (used by DSi)
|
|
/// </summary>
|
|
public byte[] Unknown3;
|
|
|
|
/// <summary>
|
|
/// ARM9 (with encrypted secure area) SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] ARM9WithSecureAreaSHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// ARM7 SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] ARM7SHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// Digest master SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] DigestMasterSHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// Banner SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] BannerSHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// ARM9i (decrypted) SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] ARM9iDecryptedSHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// ARM7i (decrypted) SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] ARM7iDecryptedSHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[] Reserved5;
|
|
|
|
/// <summary>
|
|
/// ARM9 (without secure area) SHA1 HMAC hash
|
|
/// </summary>
|
|
public byte[] ARM9NoSecureAreaSHA1HMACHash;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[] Reserved6;
|
|
|
|
/// <summary>
|
|
/// Reserved and unchecked region, always zero. Used for passing arguments in debug environment.
|
|
/// </summary>
|
|
public byte[] ReservedAndUnchecked;
|
|
|
|
/// <summary>
|
|
/// RSA signature (the first 0xE00 bytes of the header are signed with an 1024-bit RSA signature).
|
|
/// </summary>
|
|
public byte[] RSASignature;
|
|
}
|
|
} |