Beispiel #1
0
 private FlatOperand(FlatOperandType type, int index, FlatValue imm)
 {
     OperandType = type;
     ImmediateValue = imm;
     OperandIndex = index;
 }
Beispiel #2
0
 private FlatOperand(FlatOperandType type, FlatValue imm)
 {
     OperandType = type;
     ImmediateValue = imm;
 }