mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
281 B
C#
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) {
|
|
}
|
|
}
|
|
}
|
|
}
|