Esempio n. 1
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);
     }
 }
Esempio n. 2
0
 public static void HandleInterrupt_0E(ref IRQContext aContext) => RSoD.Push("Page Fault Exception", " ", true);
Esempio n. 3
0
 public static void HandleInterrupt_0F(ref IRQContext aContext) => RSoD.Push("Unknown Interrupt Exception", " ", true);
Esempio n. 4
0
 public static void HandleInterrupt_0B(ref IRQContext aContext) => RSoD.Push("Segment not present", " ", true);
Esempio n. 5
0
 public static void HandleInterrupt_0D(ref IRQContext aContext) => RSoD.Push("General Protection Fault", "GPF", true);
Esempio n. 6
0
 public static void HandleInterrupt_13(ref IRQContext aContext) => RSoD.Push("SIMD Floating Point Exception", " ", true);
Esempio n. 7
0
 public static void HandleInterrupt_0A(ref IRQContext aContext) => RSoD.Push("Bad TSS Exception", " ", true);
Esempio n. 8
0
 public static void HandleInterrupt_11(ref IRQContext aContext) => RSoD.Push("Alignment Exception", " ", true);
Esempio n. 9
0
 public static void HandleInterrupt_12(ref IRQContext aContext) => RSoD.Push("Machine Check Exception", " ", true);
Esempio n. 10
0
 public static void HandleInterrupt_05(ref IRQContext aContext) => RSoD.Push("Out of Bounds Exception", " ", true);
Esempio n. 11
0
 public static void HandleInterrupt_09(ref IRQContext aContext) => RSoD.Push("Coprocessor Segment Overrun Exception", " ", true);
Esempio n. 12
0
 public static void HandleInterrupt_04(ref IRQContext aContext) => RSoD.Push("Into Detected Overflow Exception", "", true);
Esempio n. 13
0
 public static void HandleInterrupt_03(ref IRQContext aContext) => RSoD.Push("Breakpoint Exception", " ", true);
Esempio n. 14
0
 public static void HandleInterrupt_02(ref IRQContext aContext) => RSoD.Push("Non Maskable Interrupt Exception", " ", true);
Esempio n. 15
0
 public static void HandleInterrupt_01(ref IRQContext aContext) => RSoD.Push("Debug Exception", " ", true);
Esempio n. 16
0
 public static void HandleInterrupt_00(ref IRQContext aContext) => RSoD.Push("Divide by zero Exception", "YOU JUST CREATED A BLACK HOLE!", true);