public PointerOperand(LocationAware <UInt16> segment, LocationAware <UInt32> offset) { this.Segment = segment; this.Offset = offset; }
public ImmediateOperand(int value, CpuSize size) { this.immediate = new LocationAware <int>(value); this.size = size; }
public RelativeOperand(LocationAware <int> offset) { this.Offset = offset; }
public ImmediateOperand(LocationAware <int> immediate, CpuSize size) { this.immediate = immediate; this.size = size; }