===========================================================================
| 1993 | |
| 1994 | //=========================================================================== |
| 1995 | Update_t CmdBreakpointEnable (int nArgs) { |
| 1996 | |
| 1997 | if (! g_nBreakpoints) |
| 1998 | return _BP_InfoNone(); |
| 1999 | |
| 2000 | if (! nArgs) |
| 2001 | return Help_Arg_1( CMD_BREAKPOINT_ENABLE ); |
| 2002 | |
| 2003 | _BWZ_EnableDisableViaArgs( nArgs, g_aBreakpoints, MAX_BREAKPOINTS, true ); |
| 2004 | |
| 2005 | return UPDATE_BREAKPOINTS; |
| 2006 | } |
| 2007 | |
| 2008 | // bpchange # <[E e T t S s]> |
| 2009 | Update_t CmdBreakpointChange (int nArgs) |
nothing calls this directly
no test coverage detected