Files
SabreTools.Models/N3DS/CodeSetInfo.cs

22 lines
559 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.N3DS
2023-09-04 00:11:04 -04:00
{
/// <see href="https://www.3dbrew.org/wiki/NCCH/Extended_Header#Code_Set_Info"/>
public sealed class CodeSetInfo
{
/// <summary>
/// Address
/// </summary>
2023-09-10 21:24:10 -04:00
public uint Address { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Physical region size (in page-multiples)
/// </summary>
2023-09-10 21:24:10 -04:00
public uint PhysicalRegionSizeInPages { get; set; }
2023-09-04 00:11:04 -04:00
/// <summary>
/// Size (in bytes)
/// </summary>
2023-09-10 21:24:10 -04:00
public uint SizeInBytes { get; set; }
2023-09-04 00:11:04 -04:00
}
}