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