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