mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-26 21:42:11 +00:00
16 lines
292 B
C#
16 lines
292 B
C#
using System;
|
|
using Cosmos.CPU;
|
|
using Sys = Cosmos.System;
|
|
|
|
namespace KernelGen3 {
|
|
public class Boot : Sys.Boot {
|
|
|
|
protected override void Run() {
|
|
Bootstrap.Init();
|
|
Cosmos.CPU.Temp.ShowText();
|
|
|
|
while (true) {
|
|
}
|
|
}
|
|
}
|
|
}
|