Cosmos/source/Indy.IL2CPU.IL.NativeX86/CustomImplementations/System/Diagnostics/DebuggerImpl.cs

13 lines
No EOL
329 B
C#

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