mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
32 lines
753 B
C#
32 lines
753 B
C#
namespace BinaryObjectScanner.Models.N3DS
|
|
{
|
|
/// <see href="https://www.3dbrew.org/wiki/NCSD#Development_Card_Info_Header_Extension"/>
|
|
public sealed class DevelopmentCardInfoHeader
|
|
{
|
|
/// <summary>
|
|
/// InitialData
|
|
/// </summary>
|
|
public InitialData InitialData;
|
|
|
|
/// <summary>
|
|
/// CardDeviceReserved1
|
|
/// </summary>
|
|
public byte[] CardDeviceReserved1;
|
|
|
|
/// <summary>
|
|
/// TitleKey
|
|
/// </summary>
|
|
public byte[] TitleKey;
|
|
|
|
/// <summary>
|
|
/// CardDeviceReserved2
|
|
/// </summary>
|
|
public byte[] CardDeviceReserved2;
|
|
|
|
/// <summary>
|
|
/// TestData
|
|
/// </summary>
|
|
public TestData TestData;
|
|
}
|
|
}
|