Cosmos/source/Indy.IL2CPU.IL.X86.Native/CustomImplementations/System/Diagnostics/DebuggerImpl.cs
2007-10-07 11:05:38 +00:00

13 lines
No EOL
330 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Indy.IL2CPU.IL.X86.Native.CustomImplementations.System.Diagnostics {
public static class DebuggerImpl {
public static unsafe void Break() {
byte* xScreenPtr = (byte*)0xB8000;
byte xTemp = *xScreenPtr;
}
}
}