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

15 lines
291 B
C#

using System;
using Cosmos.IL2CPU.API.Attribs;
using Cosmos.System;
namespace KernelGen3 {
static public class Boot {
[BootEntry]
static private void Init() {
Cosmos.System.Boot.TempDebugTest();
while (true) {
}
}
}
}