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; }
public DisassembledInstruction(int address, int opcode, string instruction) { this.address = address; this.opcode = opcode; this.instruction = instruction; num_operands = 0; op1 = null; op2 = null; }