Cosmos/source2/Kernel/System/Cosmos.System/Global.cs
2014-07-12 13:02:10 +00:00

22 lines
659 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 = new Console();
static public void Init() {
// We must init Console before calling Inits. This is part of the
// "minimal" boot to allow output
Global.Dbg.Send("Creating Console");
// Console;
Global.Dbg.Send("HW Init");
Cosmos.Hardware.Global.Init();
//Network.NetworkStack.Init();
}
}
}