Cosmos/source/KernelGen3/Cosmos.System/FileSystem.cs
2017-07-19 12:54:21 -04:00

15 lines
405 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";
}
}
}