예제 #1
0
 public Z80Instruction(Z80Opcode opcode, OperandType operandType, ushort immediate)
     : this(opcode)
 {
     OperandType = operandType;
     Immediate   = immediate;
 }
예제 #2
0
 public Z80Instruction(Z80Opcode opcode)
 {
     Opcode = opcode;
 }