mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-08 18:06:41 +00:00
20 lines
571 B
C#
20 lines
571 B
C#
namespace SabreTools.Data.Models.PCEngineCDROM
|
|
{
|
|
/// <summary>
|
|
/// This is the standard header of PC Engine CD-ROM
|
|
/// Located at the first non-zero user data sector of the first data track
|
|
/// </summary>
|
|
public sealed class Header
|
|
{
|
|
/// <summary>
|
|
/// Standard sector of data to verify the disc
|
|
/// </summary>
|
|
public BootSector BootSector { get; set; } = new();
|
|
|
|
/// <summary>
|
|
/// Initial Program Loader for the PC Engine
|
|
/// </summary>
|
|
public IPL IPL { get; set; } = new();
|
|
}
|
|
}
|