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