mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
13 lines
292 B
C#
13 lines
292 B
C#
using System;
|
|
|
|
namespace Cosmos.Platform {
|
|
public class SATA : Cosmos.HAL.SATA {
|
|
static public void InitHAL() {
|
|
Cosmos.HAL.SATA.mSataHalType = typeof(SATA);
|
|
}
|
|
|
|
public override string GetSomething() {
|
|
return "HAL.SATA";
|
|
}
|
|
}
|
|
}
|