mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 21:31:04 +00:00
22 lines
529 B
C#
22 lines
529 B
C#
namespace BinaryObjectScanner.Models.N3DS
|
|
{
|
|
/// <see href="https://www.3dbrew.org/wiki/NCCH/Extended_Header#Code_Set_Info"/>
|
|
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;
|
|
}
|
|
}
|