Cosmos/source/Kernel-X86/50-Application/Boot.cs
2017-08-07 14:14:19 -04:00

19 lines
380 B
C#

using System;
using Sys = Cosmos.System;
namespace KernelGen3 {
public class Boot : Sys.BootOld {
protected override void Run() {
// temp
Cosmos.Platform.PC.Boot.Init();
// temp
Cosmos.System.Boot.Init();
Cosmos.Platform.PC.Debug.ShowText();
while (true) {
}
}
}
}