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