diff --git a/source2/Kernel/Common/Cosmos.Common.Extensions/ByteConverter.cs b/source2/Kernel/Common/Cosmos.Common.Extensions/ByteConverter.cs index 4407782ae..917e25e14 100644 --- a/source2/Kernel/Common/Cosmos.Common.Extensions/ByteConverter.cs +++ b/source2/Kernel/Common/Cosmos.Common.Extensions/ByteConverter.cs @@ -25,12 +25,6 @@ namespace Cosmos.Common.Extensions { } static public string GetAsciiString(this byte[] n, UInt32 aStart, UInt32 aCharCount) { - Console.Write("CharCount: "); - Console.WriteLine(aCharCount.ToString()); - Console.Write("aStart: "); - Console.WriteLine(aStart.ToString()); - Console.Write("n.Length: "); - Console.WriteLine(n.Length.ToString()); var xChars = new char[aCharCount]; for (int i = 0; i < aCharCount; i++) { xChars[i] = (char)n[(aStart) + i]; diff --git a/source2/Kernel/System/Cosmos.System/Filesystem/FAT/FatFileSystem.cs b/source2/Kernel/System/Cosmos.System/Filesystem/FAT/FatFileSystem.cs index 700f0245e..27bb509b8 100644 --- a/source2/Kernel/System/Cosmos.System/Filesystem/FAT/FatFileSystem.cs +++ b/source2/Kernel/System/Cosmos.System/Filesystem/FAT/FatFileSystem.cs @@ -173,8 +173,6 @@ namespace Cosmos.System.Filesystem.FAT { xData = mDevice.NewBlockArray(RootSectorCount); mDevice.ReadBlock(RootSector, RootSectorCount, xData); } - global::System.Console.Write("xData.Length: "); - global::System.Console.WriteLine(xData.Length.ToString()); //TODO: Change xLongName to StringBuilder string xLongName = ""; for (UInt32 i = 0; i < xData.Length; i = i + 32) { @@ -201,7 +199,7 @@ namespace Cosmos.System.Filesystem.FAT { } } xLongName = xLongPart + xLongName; - // //TODO: LDIR_Chksum + //TODO: LDIR_Chksum } } else { byte xStatus = xData[i]; diff --git a/source2/Users/Kudzu/Breakpoints/BreakpointsOS.cs b/source2/Users/Kudzu/Breakpoints/BreakpointsOS.cs index 5e666f3e4..00d76a6d5 100644 --- a/source2/Users/Kudzu/Breakpoints/BreakpointsOS.cs +++ b/source2/Users/Kudzu/Breakpoints/BreakpointsOS.cs @@ -63,7 +63,7 @@ namespace BreakpointsKernel { //try { //Trace1(); //TestSB(); - TestStringCtor(); + //TestStringCtor(); Console.WriteLine("Block devices found: " + BlockDevice.Devices.Count);