Esempio n. 1
0
 private SystemExecutionState ClearBreakpoint(ushort address)
 {
     BreakpointManager.SetBreakpoint(new BreakpointEntry(BreakpointType.None, address));
     return(SystemExecutionState.Debugging);
 }
Esempio n. 2
0
 private SystemExecutionState SetBreakpointDisplay(ushort address)
 {
     BreakpointManager.SetBreakpoint(new BreakpointEntry(BreakpointType.Display, address));
     return(SystemExecutionState.Debugging);
 }