mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
13 lines
No EOL
329 B
C#
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;
|
|
}
|
|
}
|
|
} |