예제 #1
0
 public static Action call(CPU cpu, FlagCondition o1, Immediate<ushort> o2) =>
   () => {
     if (o1.Target)
       cpu.Call(o2.Target, 3);
   };
예제 #2
0
 public static Action rst(CPU cpu, Fixed o) =>
   () => cpu.Call(o.Target, 1);
예제 #3
0
 public static Action call(CPU cpu, Immediate<ushort> o) =>
   () => cpu.Call(o.Target, 3);