Cosmos/source2/Kernel/System/Cosmos.System/Global.cs
2010-09-01 01:30:53 +00:00

19 lines
603 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.System {
static public class Global {
static readonly public Cosmos.Debug.Kernel.Debugger Dbg = new Cosmos.Debug.Kernel.Debugger("System", "");
static public Console Console;
static public void Init() {
// We must init Console before calling Inits. This is part of the
// "minimal" boot to allow output
Console = new Console();
Cosmos.Hardware.Global.Init();
}
}
}