mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 13:32:08 +00:00
16 lines
339 B
C#
16 lines
339 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.DeviceMgr = new DeviceMgr();
|
|
}
|
|
}
|
|
}
|