mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
13 lines
283 B
C#
13 lines
283 B
C#
using System;
|
|
using Indy.IL2CPU.NativeX86.Utilities.BIOS;
|
|
|
|
namespace Cosmos.Kernel {
|
|
class ConsoleDrv {
|
|
public static void Main() {
|
|
Console.WriteLine("");
|
|
Console.WriteLine("This is Indy OS...");
|
|
// int xDivider = 0;
|
|
// int test = 4 / xDivider;
|
|
}
|
|
}
|
|
}
|