// Boot
 public static void Start()
 {
     BootScreen.ShowStartScreen();
     Console.ForegroundColor = ConsoleColor.White;
     Console.Clear();
     LanguageSelector.ShowLanguageDialog();
     Console.Clear();
 }
Esempio n. 2
0
 private void Level_4()
 {
     UserSystem.Login("System", "010101");
     Thread.Sleep(1000);
     try
     {
         BootScreen.Boot();
     }
     catch (Exception e)
     {
         KernelException ess = new KernelException(e.Message + "\n       IL Exception", new IRQSafeContext());
         RSoD.Push(ess, true);
     }
 }