コード例 #1
0
ファイル: Runner.cs プロジェクト: sayaPintar/PurpleMoon
 // stop
 public static void Stop()
 {
     CPU.Halt();
 }
コード例 #2
0
ファイル: Instructions.cs プロジェクト: sayaPintar/PurpleMoon
 public static bool F_HALT()
 {
     CPU.Halt();
     return(true);
 }