예제 #1
0
 public Instruction(Opcode opcode, BasicBlock block)
 {
     Opcode = opcode;
     Block  = block;
 }
예제 #2
0
 public Instruction(Opcode opcode, uint offset)
 {
     Opcode = opcode;
     Offset = offset;
 }