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