Cosmos/source/Cosmos.System/FileSystem/FatHelpers.cs
Matthijs ter Woord d9a9737608 Filesystem/VFS/FAT work by @charlesbetros has been merged into main kernel.
This does NOT mean it's fully working yet!
2015-10-02 17:12:00 +02:00

16 lines
378 B
C#

using System;
using System.Linq;
using System.Threading.Tasks;
using Cosmos.Debug.Kernel;
namespace Cosmos.System.FileSystem
{
public static class FatHelpers
{
private static Debugger mDebugger = new Debugger("FAT", "Debug");
public static void Debug(string message)
{
//mDebugger.Send("FAT Debug: " + message);
}
}
}