namespace SabreTools.Models.MSDOS
{
///
/// Each pointer in the relocation table looks as such
///
///
public sealed class RelocationEntry
{
///
/// Offset of the relocation within provided segment.
///
public ushort Offset { get; set; }
///
/// Segment of the relocation, relative to the load segment address.
///
public ushort Segment { get; set; }
}
}