mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 21:30:19 +00:00
15 lines
No EOL
445 B
C#
15 lines
No EOL
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Indy.IL2CPU.Plugs;
|
|
using Indy.IL2CPU.Assembler;
|
|
|
|
namespace Indy.IL2CPU.IL.X86.Native.CustomImplementations.System.Diagnostics {
|
|
public class BreakAssembler: AssemblerMethod {
|
|
public override void Assemble(Indy.IL2CPU.Assembler.Assembler aAssembler) {
|
|
new Label(DebuggerImpl.BreakMethodName);
|
|
new Assembler.X86.Ret("");
|
|
}
|
|
}
|
|
} |