Beispiel #1
0
        public static void Init()
        {
            KMem.Init();     //then we init kMem

            KConsole.Init(); //First console so Kmem can print debug messages
            //Now init the rest
            KInt.Init();
        }
Beispiel #2
0
 public static void KeyboardIrq(char c)
 {
     KConsole.LogReadLine((byte)c);
 }