Cosmos/source/Kernel-X86/50-Application/Boot.cs
2017-12-10 15:57:12 +00:00

15 lines
281 B
C#

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