mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
37 lines
No EOL
892 B
C#
37 lines
No EOL
892 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();
|
|
|
|
Console.WriteLine("Congratulations! You just booted SSchocke's C# code.");
|
|
|
|
//PCITest.Test();
|
|
//NetworkTest.Test();
|
|
//FloatTest.Test();
|
|
VMWareSVGA.Test();
|
|
|
|
Cosmos.Sys.Deboot.ShutDown();
|
|
}
|
|
|
|
}
|
|
} |