namespace SabreTools.Data.Models.PCEngineCDROM
{
///
/// PC Engine CDROM constant values and arrays
///
public static class Constants
{
///
/// Standard block size for PC Engine CDROM disc images
///
public static readonly int SectorSize = 2048;
///
/// Start of a PC Engine CDROM Header
///
public static readonly byte[] MagicBytes = [0x82, 0xB1, 0x82, 0xCC, 0x83, 0x76, 0x83, 0x8D, 0x83, 0x4F, 0x83, 0x89, 0x83, 0x80, 0x82, 0xCC];
///
/// Start of an empty CD-ROM pregap sector
///
public static readonly byte[] PregapBytes = [0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00];
}
}