Cosmos/source2/Users/Kudzu/Breakpoints/Program.cs
mterwoord_cp 0a09128a18
2010-08-16 17:04:39 +00:00

17 lines
465 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BreakpointsKernel
{
public class Kernel
{
// This is a temp wrapper to bridge from existing project format
// to the new coming project format.
public static void Boot() {
Cosmos.Debug.Debugger.Send("Starting kernel boot now");
var xKernel = new BreakpointsOS();
xKernel.Start();
}
}
}