Cosmos/source2/Kernel/System/Hardware/Cosmos.Hardware/Global.cs
kudzu_cp aff8bf7f6a
2010-08-20 00:09:28 +00:00

20 lines
608 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.Hardware {
static public class Global {
static readonly public Cosmos.Debug.Kernel.Debugger Dbg = new Cosmos.Debug.Kernel.Debugger("Hardware", "");
static public Keyboard Keyboard = new Keyboard();
static public PIT PIT = new PIT();
static public TextScreen TextScreen = new TextScreen();
static public void Init() {
Global.Dbg.Send("Cosmos.Hardware.Global.Init");
Cosmos.Core.Global.Init();
}
}
}