| 62 | } |
| 63 | |
| 64 | void EmuThread::run() { |
| 65 | while (!(cpu_check_signals() & CPU_SIGNAL_EXIT)) { |
| 66 | emu_run(1u); |
| 67 | doStuff(); |
| 68 | throttleWait(); |
| 69 | } |
| 70 | asic_free(); |
| 71 | } |
| 72 | |
| 73 | void EmuThread::writeConsole(int console, const char *format, va_list args) { |
| 74 | if (type != console) { |
nothing calls this directly
no test coverage detected