예제 #1
0
 public Triplet(TripletOpCode opcode, object result, object operand1, object operand2)
 {
     this.opcode   = opcode;
     this.result   = result;
     this.operand1 = operand1;
     this.operand2 = operand2;
 }
예제 #2
0
 public Triplet(int offset, TripletOpCode opcode, object result, object operand1)
 {
     this.offset   = offset;
     this.opcode   = opcode;
     this.result   = result;
     this.operand1 = operand1;
 }
예제 #3
0
 public Triplet(int offset, TripletOpCode opcode, object result)
 {
     this.offset = offset;
     this.opcode = opcode;
     this.result = result;
 }
예제 #4
0
 public Triplet(TripletOpCode opcode, object result)
 {
     this.opcode = opcode;
     this.result = result;
 }
예제 #5
0
 public Triplet(int offset, TripletOpCode opcode)
 {
     this.offset = offset;
     this.opcode = opcode;
 }
예제 #6
0
 public Triplet(TripletOpCode opcode)
 {
     this.opcode = opcode;
 }