mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
15 lines
310 B
C#
15 lines
310 B
C#
using System;
|
|
using System.Text;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.System {
|
|
static public class Boot {
|
|
[BootEntry(40)]
|
|
static private void Init() {
|
|
}
|
|
|
|
static public void TempDebugTest() {
|
|
HAL.Globals.DeviceMgr.Processor.SetOption(1);
|
|
}
|
|
}
|
|
}
|