Cosmos/source/Kernel-X86/90-Application/Boot.cs
2017-08-05 19:59:41 -04:00

16 lines
292 B
C#

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