Add simple NE tables

This commit is contained in:
Matt Nadareski
2022-11-04 09:40:29 -07:00
parent e33d6b3a0a
commit 4bdc5dc90f
5 changed files with 137 additions and 5 deletions

View File

@@ -26,12 +26,30 @@ namespace BurnOutSharp.Models.NewExecutable
/// </summary>
public SegmentTableEntry[] SegmentTable { get; set; }
// TODO: Resource Table
// TODO: Resident-Name Table
// TODO: Module-Reference Table
// TODO: Imported-Name Table
// TODO: NE Resource Table
/// <summary>
/// Resident-Name table
/// </summary>
public ResidentNameTableEntry[] ResidentNameTable { get; set; }
/// <summary>
/// Module-Reference table
/// </summary>
public ModuleReferenceTableEntry[] ModuleReferenceTable { get; set; }
/// <summary>
/// Imported-Name table
/// </summary>
public ImportedNameTableEntry[] ImportedNameTable { get; set; }
// TODO: Entry Table
// TODO: Nonresident-Name Table
/// <summary>
/// Nonresident-Name table
/// </summary>
public NonResidentNameTableEntry[] NonResidentNameTable { get; set; }
// TODO: Per Segment Data
}
}