Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Boot.cs
2017-08-07 14:14:19 -04:00

16 lines
335 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.HAL;
namespace Cosmos.Platform.PC {
static public class Boot {
// [BootEntry(20)]
static public void Init() {
// Temp
CPU.x86.Boot.Init();
HAL.Globals.Devices = new Devices();
}
}
}