mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
25 lines
601 B
C#
25 lines
601 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.N3DS
|
|
{
|
|
/// <see href="https://www.3dbrew.org/wiki/NCCH/Extended_Header#Code_Set_Info"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class CodeSetInfo
|
|
{
|
|
/// <summary>
|
|
/// Address
|
|
/// </summary>
|
|
public uint Address;
|
|
|
|
/// <summary>
|
|
/// Physical region size (in page-multiples)
|
|
/// </summary>
|
|
public uint PhysicalRegionSizeInPages;
|
|
|
|
/// <summary>
|
|
/// Size (in bytes)
|
|
/// </summary>
|
|
public uint SizeInBytes;
|
|
}
|
|
}
|