Cosmos/source/SSchockeTest/Program.cs
mterwoord_cp 2d18abedea
2010-02-22 17:29:29 +00:00

36 lines
No EOL
830 B
C#

using System;
using Cosmos.Compiler.Builder;
using HW = Cosmos.Hardware;
using Cosmos.Kernel;
using System.Collections.Generic;
using Cosmos.Sys.Network;
using System.Text;
namespace Cosmos.Playground.SSchocke {
class Program
{
#region Cosmos Builder logic
// Most users wont touch this. This will call the Cosmos Build tool
[STAThread]
static void Main(string[] args) {
BuildUI.Run();
}
#endregion
// Main entry point of the kernel
public static void Init() {
var xBoot = new Cosmos.Sys.Boot();
xBoot.Execute();
//PCITest.Test();
NetworkTest.Test();
//FloatTest.Test();
//VMWareSVGA.Test();
while (true) ;
Cosmos.Sys.Deboot.ShutDown();
}
}
}