===========================================================================
| 1954 | |
| 1955 | //=========================================================================== |
| 1956 | Update_t CmdBreakpointClear (int nArgs) |
| 1957 | { |
| 1958 | if (!g_nBreakpoints) |
| 1959 | return _BP_InfoNone(); |
| 1960 | |
| 1961 | if (!nArgs) |
| 1962 | { |
| 1963 | _BWZ_RemoveAll( g_aBreakpoints, MAX_BREAKPOINTS, g_nBreakpoints ); |
| 1964 | } |
| 1965 | else |
| 1966 | { |
| 1967 | _BWZ_ClearViaArgs( nArgs, g_aBreakpoints, MAX_BREAKPOINTS, g_nBreakpoints ); |
| 1968 | } |
| 1969 | |
| 1970 | return UPDATE_DISASM | UPDATE_BREAKPOINTS | UPDATE_CONSOLE_DISPLAY; |
| 1971 | } |
| 1972 | |
| 1973 | //=========================================================================== |
| 1974 | Update_t CmdBreakpointDisable (int nArgs) |
nothing calls this directly
no test coverage detected