mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
15 lines
407 B
C#
15 lines
407 B
C#
using System;
|
|
|
|
namespace Cosmos.System {
|
|
public class FileSystem {
|
|
public string GetFileSomething() {
|
|
// Need to change to dynamic load to prevent compile time access
|
|
// and then call init.
|
|
//Cosmos.Platform.TempHack.Init();
|
|
|
|
var x = Cosmos.HAL.SATA.New();
|
|
return x.GetSomethingNonPlatform() + " via FileSystem";
|
|
}
|
|
|
|
}
|
|
}
|