| 4727 | } |
| 4728 | |
| 4729 | static void check_debugger() |
| 4730 | { |
| 4731 | if (regs.spcflags & SPCFLAG_BRK) { |
| 4732 | unset_special(SPCFLAG_BRK); |
| 4733 | #ifdef DEBUGGER |
| 4734 | if (debugging) { |
| 4735 | debug(); |
| 4736 | } |
| 4737 | #endif |
| 4738 | } |
| 4739 | } |
| 4740 | |
| 4741 | static void debug_cpu_stop() |
| 4742 | { |
no test coverage detected