| 1352 | #endif |
| 1353 | |
| 1354 | void common_prepareException(CPU* cpu, int code, int error) { |
| 1355 | cpu->prepareException(code, error); |
| 1356 | } |
| 1357 | |
| 1358 | U32 common_getCF(CPU* cpu) { |
| 1359 | return cpu->getCF() ? 1 : 0; |
nothing calls this directly
no test coverage detected