Exemplo n.º 1
0
        private void InitOS()
        {
            MConsole.WriteBlue(" [FileSystem]");
            MConsole.WriteLineWhite(" Loading file system...");
            Sys.FileSystem.VFS.VFSManager.RegisterVFS(FileSystem);
            MConsole.WriteGreen(" [FileSystem]");
            MConsole.WriteLineWhite(" File system loaded.");

            MConsole.WriteBlue(" [Syscall]");
            MConsole.WriteLineWhite(" Initializing system call...");
            Syscall.Init();
            CPU.EnableInterrupts();
            MConsole.WriteGreen(" [Syscall]");
            MConsole.WriteLineWhite(" Systemcall initialized.");
        }