mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
307 B
C#
17 lines
307 B
C#
using System;
|
|
|
|
|
|
namespace Cosmos.Kernel {
|
|
class ConsoleDrv {
|
|
public static void Main() {
|
|
Console.WriteLine("This is Indy OS...");
|
|
//int xDivider = 0;
|
|
Console.WriteLine("Done");
|
|
Console.WriteLine("Testing IDT");
|
|
TestIDT();
|
|
}
|
|
|
|
public static void TestIDT() {
|
|
}
|
|
}
|
|
}
|