| 8226 | } |
| 8227 | |
| 8228 | static bool check_breakpoint_count(struct breakpoint_node *bpn, uaecptr pc) |
| 8229 | { |
| 8230 | bpn->cnt--; |
| 8231 | if (bpn->cnt <= 0) { |
| 8232 | return true; |
| 8233 | } |
| 8234 | console_out_f(_T("Breakpoint %d hit: PC=%08x, count=%d.\n"), bpn - bpnodes, pc, bpn->cnt); |
| 8235 | return false; |
| 8236 | } |
| 8237 | |
| 8238 | void debug (void) |
| 8239 | { |
no test coverage detected