mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-01-23 06:16:12 +00:00
Breakpoints: some new features (#1191)
* Debugger: add new flags to breakpoints. Stop / no stop. Hit count Keep temp breakpoint alive so they can be inspected. Signed-off-by: Andrea Odetti <mariofutire@gmail.com> * Debugger: ensure temporary breakpoints are removed when the execution restarts. This code: _BWZ_Clear(pBP, iBreakpoint); was actually a bug since the function needs the root points of all breakpoints, not to a particular one. * Breakpoints: some extra tweaks. Signed-off-by: Andrea Odetti <mariofutire@gmail.com> * Remove reundant code and comment. Signed-off-by: Andrea Odetti <mariofutire@gmail.com> * Breakpoints: coding standards. Signed-off-by: Andrea Odetti <mariofutire@gmail.com> --------- Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
@@ -499,7 +499,7 @@ Update_t CmdHelpSpecific (int nArgs)
|
||||
switch ( iParam )
|
||||
{
|
||||
case PARAM_CAT_BOOKMARKS : iCmdBegin = CMD_BOOKMARK ; iCmdEnd = CMD_BOOKMARK_SAVE ; break;
|
||||
case PARAM_CAT_BREAKPOINTS: iCmdBegin = CMD_BREAK_INVALID ; iCmdEnd = CMD_BREAKPOINT_SAVE ; break;
|
||||
case PARAM_CAT_BREAKPOINTS: iCmdBegin = CMD_BREAK_INVALID ; iCmdEnd = CMD_BREAKPOINT_CHANGE ; break;
|
||||
case PARAM_CAT_CONFIG : iCmdBegin = CMD_BENCHMARK ; iCmdEnd = CMD_CONFIG_SET_DEBUG_DIR; break;
|
||||
case PARAM_CAT_CPU : iCmdBegin = CMD_ASSEMBLE ; iCmdEnd = CMD_UNASSEMBLE ; break;
|
||||
case PARAM_CAT_FLAGS :
|
||||
|
||||
Reference in New Issue
Block a user