Пример #1
0
 private SystemExecutionState ClearBreakpoint(ushort address)
 {
     BreakpointManager.SetBreakpoint(new BreakpointEntry(BreakpointType.None, address));
     return(SystemExecutionState.Debugging);
 }
Пример #2
0
 private SystemExecutionState SetBreakpointDisplay(ushort address)
 {
     BreakpointManager.SetBreakpoint(new BreakpointEntry(BreakpointType.Display, address));
     return(SystemExecutionState.Debugging);
 }