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