mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
15 lines
No EOL
468 B
C#
15 lines
No EOL
468 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.Native.CustomImplementations.System.Diagnostics {
|
|
[Plug(Target = typeof(global::System.Diagnostics.Debugger))]
|
|
public static class DebuggerImpl {
|
|
public const string BreakMethodName = "_CODE_REQUESTED_BREAK_";
|
|
[PlugMethod(MethodAssembler = typeof(BreakAssembler))]
|
|
public static void Break() {
|
|
}
|
|
}
|
|
} |