| 334 | } |
| 335 | |
| 336 | void EmuThread::setThrottle(bool state) { |
| 337 | std::unique_lock<std::mutex> lockSpeed(m_mutexSpeed); |
| 338 | m_throttle = state; |
| 339 | if (!state) { |
| 340 | m_cvSpeed.notify_one(); |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | void EmuThread::setAsicRev(int rev) { |
| 345 | m_asicRev.store(rev); |