mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
20 lines
524 B
C#
20 lines
524 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using Sys = Cosmos.System;
|
|
|
|
/*
|
|
* Beware Demo Kernels are not recompiled when its dependencies changes!
|
|
* To force recompilation right click on on the Cosmos icon of the demo solution and do "Build".
|
|
*/
|
|
namespace Guess {
|
|
public class GuessOS : Sys.Kernel {
|
|
|
|
protected override void Run() {
|
|
Console.WriteLine("Booted Kernel Gen3");
|
|
while (true) {
|
|
}
|
|
}
|
|
}
|
|
}
|