Cosmos/source/Kernel-X86/50-Application/Boot.cs
José Pedro 0fb79d934a g3
2017-08-07 19:29:44 +01:00

21 lines
435 B
C#

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