mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
19 lines
380 B
C#
19 lines
380 B
C#
using System;
|
|
using Sys = Cosmos.System;
|
|
|
|
namespace KernelGen3 {
|
|
public class Boot : Sys.BootOld {
|
|
|
|
protected override void Run() {
|
|
// temp
|
|
Cosmos.Platform.PC.Boot.Init();
|
|
// temp
|
|
Cosmos.System.Boot.Init();
|
|
|
|
Cosmos.Platform.PC.Debug.ShowText();
|
|
|
|
while (true) {
|
|
}
|
|
}
|
|
}
|
|
}
|