Cosmos/source/Kernel-X86/20-Platform/Cosmos.Platform.PC/Boot.cs

14 lines
316 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.HAL;
using Cosmos.IL2CPU.API.Attribs;
namespace Cosmos.Platform.PC {
static public class Boot {
[BootEntry(20)]
static private void Init() {
HAL.Globals.DeviceMgr = new DeviceMgr();
}
}
}