mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
19 lines
603 B
C#
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();
|
|
}
|
|
}
|
|
}
|