NdsForge.NET 1.0.1
Read, validate, edit, compare, and build Nintendo DS and DSi images from .NET
Loading...
Searching...
No Matches
NdsRepairKind.cs
1namespace NdsForge;
2
4[Flags]
5public enum NdsRepairKind
6{
8 None = 0,
9
11 HeaderCrc = 1 << 0,
12
15
17 BannerCrcs = 1 << 2,
18
20 SecureAreaCrc = 1 << 3,
21}
NdsRepairKind
Names independently requested checksum repairs so an edit plan never hides a broad implicit fix opera...
@ HeaderCrc
Recalculates the common header CRC over bytes 0x000-0x15D.
@ SecureAreaCrc
Recalculates the encrypted-representation secure-area checksum stored at header offset 0x6C.
@ BannerCrcs
Recalculates every cumulative checksum field defined by the current banner version.
@ None
No source defect has been selected for repair.
@ NintendoLogoCrc
Recalculates the dedicated Nintendo-logo checksum stored at header offset 0x15C.