MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / check_breakpoint_count

Function check_breakpoint_count

src/debug.cpp:8228–8236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8226}
8227
8228static 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
8238void debug (void)
8239{

Callers 1

debugFunction · 0.85

Calls 1

console_out_fFunction · 0.50

Tested by

no test coverage detected