mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 13:28:41 +00:00
14 lines
306 B
C#
14 lines
306 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Cosmos.HAL;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Platform.PC {
|
|
static public class Boot {
|
|
[BootEntry(20)]
|
|
static private void Init() {
|
|
HAL.Globals.DeviceMgr = new DeviceMgr();
|
|
}
|
|
}
|
|
}
|