Cosmos/source/Kernel-X86/50-Application/Boot.cs
2017-08-06 18:21:01 -04:00

16 lines
305 B
C#

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