| 181 | // |
| 182 | //***************************************************************************** |
| 183 | void CPU_Step() |
| 184 | { |
| 185 | #ifdef DAEDALUS_DEBUG_CONSOLE |
| 186 | if (CPU_IsRunning()) |
| 187 | { |
| 188 | DBGConsole_Msg(0, "Already Running"); |
| 189 | return; |
| 190 | } |
| 191 | #endif |
| 192 | |
| 193 | CPU_CheckStuffToDo(); |
| 194 | |
| 195 | CPU_EXECUTE_OP< true >(); |
| 196 | } |
nothing calls this directly
no test coverage detected