mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
g3
This commit is contained in:
parent
f42ee4df83
commit
e59178006f
2 changed files with 4 additions and 5 deletions
|
|
@ -8,11 +8,7 @@ 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();
|
||||
|
||||
HAL.Globals.DeviceMgr = new DeviceMgr();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,5 +4,8 @@ using System.Text;
|
|||
|
||||
namespace Cosmos.Platform.PC {
|
||||
public class DeviceMgr : HAL.DeviceMgr {
|
||||
public DeviceMgr() {
|
||||
var xProcessor = new Devices.Processor();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue