Files
BinaryObjectScanner/BinaryObjectScanner.Models/Nitro/Cart.cs

33 lines
894 B
C#
Raw Normal View History

2023-03-07 16:59:14 -05:00
namespace BinaryObjectScanner.Models.Nitro
2023-01-06 15:34:04 -08:00
{
/// <summary>
2023-01-06 23:48:26 -08:00
/// Represents a DS/DSi cart image
2023-01-06 15:34:04 -08:00
/// </summary>
public class Cart
{
/// <summary>
2023-01-06 23:48:26 -08:00
/// DS/DSi cart header
2023-01-06 15:34:04 -08:00
/// </summary>
2023-01-06 23:48:26 -08:00
public CommonHeader CommonHeader { get; set; }
/// <summary>
/// DSi extended cart header
/// </summary>
public ExtendedDSiHeader ExtendedDSiHeader { get; set; }
2023-01-06 15:34:04 -08:00
/// <summary>
/// Secure area, may be encrypted or decrypted
/// </summary>
public byte[] SecureArea { get; set; }
2023-01-08 00:16:01 -08:00
/// <summary>
/// Name table (folder allocation table, name list)
/// </summary>
public NameTable NameTable { get; set; }
2023-01-08 00:20:57 -08:00
/// <summary>
/// File allocation table
/// </summary>
public FileAllocationTableEntry[] FileAllocationTable { get; set; }
2023-01-06 15:34:04 -08:00
}
}