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(); } } }