mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
21 lines
435 B
C#
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) {
|
|
}
|
|
}
|
|
}
|
|
}
|