namespace SabreTools.Data.Models.OperaFS
{
///
/// OperaFS constant values and arrays
///
public static class Constants
{
///
/// Standard block size for OperaFS disc images
///
public static readonly int SectorSize = 2048;
///
/// Start of a standard OperaFS image
///
public static readonly byte[] MagicBytes = [0x01, 0x5A, 0x5A, 0x5A, 0x5A, 0x5A, 0x01];
///
/// Padding bytes within a OperaFS FileSystem, "iamaduck"
///
public static readonly byte[] PaddingBytes = [0x69, 0x61, 0x6D, 0x61, 0x64, 0x75, 0x63, 0x6B];
}
}