This commit is contained in:
Kudzu 2017-08-07 17:08:33 -04:00
parent f42ee4df83
commit e59178006f
2 changed files with 4 additions and 5 deletions

View file

@ -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();
}
}
}

View file

@ -4,5 +4,8 @@ using System.Text;
namespace Cosmos.Platform.PC {
public class DeviceMgr : HAL.DeviceMgr {
public DeviceMgr() {
var xProcessor = new Devices.Processor();
}
}
}