Ejemplo n.º 1
0
 public DisassembledInstruction(int address, int opcode, string instruction, DisassembledOperand dop1, DisassembledOperand dop2)
 {
     this.address     = address;
     this.opcode      = opcode;
     this.instruction = instruction;
     num_operands     = 2;
     op1 = dop1;
     op2 = dop2;
 }
Ejemplo n.º 2
0
 public DisassembledInstruction(int address, int opcode, string instruction)
 {
     this.address     = address;
     this.opcode      = opcode;
     this.instruction = instruction;
     num_operands     = 0;
     op1 = null;
     op2 = null;
 }