mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
23 lines
No EOL
418 B
C#
23 lines
No EOL
418 B
C#
//#define Bochs_Magic_Breakpoint
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
|
|
namespace Indy.IL2CPU.Assembler.X86.Native {
|
|
[OpCode(0xFFFFFFFF, "lgdt")]
|
|
public class Break: X86.Instruction {
|
|
public Break() {
|
|
}
|
|
|
|
public override string ToString() {
|
|
#if Bochs_Magic_Breakpoint
|
|
return "xchg bx, bx";
|
|
#else
|
|
return "; Debug?";
|
|
#endif
|
|
}
|
|
}
|
|
} |