| 972 | } |
| 973 | |
| 974 | void UpdateBreakpointsCaption() |
| 975 | { |
| 976 | char str[32]; |
| 977 | // calculate the number of enabled breakpoints |
| 978 | int tmp = 0; |
| 979 | for (int i = 0; i < numWPs; i++) |
| 980 | if (watchpoint[i].flags & WP_E) |
| 981 | tmp++; |
| 982 | sprintf(str, "Breakpoints %02X of %02X", tmp, numWPs); |
| 983 | SetDlgItemText(hDebug, IDC_DEBUGGER_BREAKPOINTS, str); |
| 984 | } |
| 985 | |
| 986 | void UpdateDebugger(bool jump_to_pc) |
| 987 | { |
no outgoing calls
no test coverage detected