| 1058 | } |
| 1059 | |
| 1060 | static void do_trace(void) |
| 1061 | { |
| 1062 | if (cpu_stopped) { |
| 1063 | return; |
| 1064 | } |
| 1065 | regs.trace_pc = regs.pc; |
| 1066 | if (regs.t0 && !regs.t1 && currprefs.cpu_model >= 68020) { |
| 1067 | // this is obsolete |
| 1068 | return; |
| 1069 | } |
| 1070 | if (regs.t1) { |
| 1071 | activate_trace(); |
| 1072 | } |
| 1073 | } |
| 1074 | |
| 1075 | void REGPARAM2 MakeSR(void) |
| 1076 | { |
no test coverage detected