Cosmos/source2/Kernel/System/Cosmos.System/Global.cs
kudzu_cp 4830098551
2010-08-28 13:06:50 +00:00

18 lines
551 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() {
// Danger: See note in Hardware.Global.Init about TextScreen.
Console = new Console();
Cosmos.Hardware.Global.Init();
}
}
}