Cosmos/source/Kernel-X86/40-System/Cosmos.System/Boot.cs
2017-08-07 15:04:16 -04:00

13 lines
258 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Cosmos.HAL;
using Cosmos.IL2CPU.API.Attribs;
namespace Cosmos.System {
static public class Boot {
[BootEntry(40)]
static private void Init() {
}
}
}