mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
32 lines
731 B
C#
32 lines
731 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Sys = Cosmos.System;
|
|
using Orvid.Graphics;
|
|
|
|
namespace CrashTest
|
|
{
|
|
public class Kernel : Sys.Kernel
|
|
{
|
|
public Kernel()
|
|
{
|
|
base.ClearScreen = true;
|
|
}
|
|
|
|
protected override void BeforeRun()
|
|
{
|
|
Console.WriteLine("Hello, and welcome to the TestOS by Orvid.");
|
|
Console.WriteLine("To see a list of supported commands, type '?'");
|
|
}
|
|
|
|
protected override void Run()
|
|
{
|
|
Monitor m = new Monitor();
|
|
Console.WriteLine("Just one more test.");
|
|
while (true)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|