using System.Runtime.InteropServices;
namespace BurnOutSharp.Models.NewExecutable
{
///
/// Segment number for fixed segment entries. A fixed
/// segment entry is 3 bytes long and has the following
/// format.
///
/// 001h-0FEh
///
[StructLayout(LayoutKind.Sequential)]
public class FixedSegmentEntry
{
///
/// Flag word.
///
public FixedSegmentEntryFlag FlagWord;
///
/// Offset within segment to entry point.
///
public ushort Offset;
}
}