예제 #1
0
 public PointerOperand(LocationAware <UInt16> segment, LocationAware <UInt32> offset)
 {
     this.Segment = segment;
     this.Offset  = offset;
 }
예제 #2
0
 public ImmediateOperand(int value, CpuSize size)
 {
     this.immediate = new LocationAware <int>(value);
     this.size      = size;
 }
예제 #3
0
 public RelativeOperand(LocationAware <int> offset)
 {
     this.Offset = offset;
 }
예제 #4
0
 public ImmediateOperand(LocationAware <int> immediate, CpuSize size)
 {
     this.immediate = immediate;
     this.size      = size;
 }