| 4839 | #endif |
| 4840 | |
| 4841 | void emulatorThread_t::run(void) |
| 4842 | { |
| 4843 | printf("Emulator Start\n"); |
| 4844 | nes_shm->runEmulator = 1; |
| 4845 | |
| 4846 | init(); |
| 4847 | |
| 4848 | while ( nes_shm->runEmulator ) |
| 4849 | { |
| 4850 | fceuWrapperUpdate(); |
| 4851 | } |
| 4852 | printf("Emulator Exit\n"); |
| 4853 | emit finished(); |
| 4854 | } |
| 4855 | |
| 4856 | void emulatorThread_t::signalFrameFinished(void) |
| 4857 | { |
nothing calls this directly
no test coverage detected