mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 05:11:08 +00:00
20 lines
608 B
C#
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();
|
|
}
|
|
|
|
}
|
|
}
|