mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-23 06:18:54 +00:00
17 lines
406 B
C#
17 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil.Cil;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.Win32 {
|
|
public class Call: X86.Call {
|
|
public Call(Instruction aInstruction, MethodInformation aMethodInfo)
|
|
: base(aInstruction, aMethodInfo) {
|
|
}
|
|
|
|
protected override void HandleDebuggerBreak() {
|
|
new Assembler.X86.Interrupt(3);
|
|
}
|
|
}
|
|
}
|