Cosmos/source/Kernel-X86/50-Application/Boot.cs

16 lines
309 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) {
}
}
}
}