using System.Runtime.InteropServices;
namespace BurnOutSharp.Models.MSDOS
{
///
/// Each pointer in the relocation table looks as such
///
///
[StructLayout(LayoutKind.Sequential)]
public class RelocationEntry
{
///
/// Offset of the relocation within provided segment.
///
public ushort Offset;
///
/// Segment of the relocation, relative to the load segment address.
///
public ushort Segment;
}
}