mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
15 lines
518 B
C#
15 lines
518 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Platform {
|
|
static public class TempHack {
|
|
// Need to hack up Cosmos a bit
|
|
// Remove hard ref from System to HAL.
|
|
// Cant dyn load yet, so use IL2CPU to drag it in dynamically to prevent compile time usage
|
|
// Dont have reflection yet, but can make a Cosmos specific method to at least allow activationon by type.
|
|
static public void Init() {
|
|
SATA.InitHAL();
|
|
}
|
|
}
|
|
}
|