public static bool F_HALT()
 {
     CPU.Halt();
     return(true);
 }
Exemple #2
0
 // stop
 public static void Stop()
 {
     CPU.Halt();
 }
 public static bool F_JUMPI()
 {
     CPU.MoveProgramCounter(CPU.I);
     return(true);
 }