Cosmos/source/SteveKernel/Program.cs
2008-07-31 15:30:46 +00:00

25 lines
No EOL
528 B
C#

using System;
using Cosmos.Build.Windows;
namespace SteveKernel
{
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()
{
Cosmos.Sys.Boot.Default();
//VGA.Test();
}
}
}