mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
18 lines
401 B
C#
18 lines
401 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() {
|
|
var xMgr = new DeviceMgr();
|
|
HAL.Globals.DeviceMgr = xMgr;
|
|
|
|
var xProcessor = new Devices.Processor();
|
|
|
|
}
|
|
}
|
|
}
|