Beispiel #1
0
 public NashaInstruction(NashaOpcode opcode, object operand = null)
 {
     OpCode  = opcode;
     Operand = operand;
 }
Beispiel #2
0
 public static IHandler Lookup(NashaOpcode opcode)
 {
     return(VmOpCodeToHandler.ContainsKey(opcode) ? VmOpCodeToHandler[opcode] : null);
 }