NdsForge.NET 1.0.1
Read, validate, edit, compare, and build Nintendo DS and DSi images from .NET
Loading...
Searching...
No Matches
NdsImageBuildLayout.cs
1namespace NdsForge;
2
21internal sealed record NdsImageBuildLayout(
23 NdsRegion? Arm9Footer,
24 NdsRegion Arm9OverlayTable,
26 NdsRegion Arm7OverlayTable,
27 NdsRegion FileNameTable,
28 NdsRegion FileAllocationTable,
30 IReadOnlyList<NdsRegion> FileRegions,
33 NdsRegion NtrDigest,
34 NdsRegion TwlDigest,
35 NdsRegion SectorHashTable,
36 NdsRegion BlockHashTable,
37 long UsedSize,
38 long PhysicalSize);
Identifies a bounded range of bytes in an image.
Definition NdsRegion.cs:11
@ Banner
Exports the complete version-sized banner structure, including reserved and animated DSi bytes.
@ Arm7
The ARM7 program used in Nintendo DS mode.
@ Arm9i
The ARM9 program used in DSi mode.
@ Arm7i
The ARM7 program used in DSi mode.
@ Arm9
The ARM9 program used in Nintendo DS mode.