Skip to content

Instantly share code, notes, and snippets.

@toptensoftware
Last active October 23, 2016 12:10
Show Gist options
  • Select an option

  • Save toptensoftware/1ef6406d2582ee0970dc6e05c5068ff3 to your computer and use it in GitHub Desktop.

Select an option

Save toptensoftware/1ef6406d2582ee0970dc6e05c5068ff3 to your computer and use it in GitHub Desktop.
public class CodeBreakPoint : BreakPoint
{
public CodeBreakPoint(ushort segment, ushort offset)
{
Segment = segment;
Offset = offset;
}
public ushort Segment;
public ushort Offset;
public override bool ShouldBreak(DebuggerCore debugger)
{
var cpu = debugger.CPU;
return cpu.cs == Segment && cpu.ip == Offset;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment