mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-06 00:03:10 +00:00
22 lines
537 B
C#
22 lines
537 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Indy.IL2CPU.IL.NativeX86 {
|
|
public static partial class RuntimeEngineImpl {
|
|
public static void InitializeEngine() {
|
|
Console.Clear();
|
|
Debug.WriteLine("Loading IDT");
|
|
SetupInterruptDescriptorTable();
|
|
Debug.WriteLine("Loading PICs");
|
|
//SetupProgrammableInterruptControllers();
|
|
//Debug.WriteLine("Kernel Booted!");
|
|
}
|
|
|
|
public static void FinalizeEngine() {
|
|
|
|
}
|
|
}
|
|
}
|