cpu: remove state check in execution loop

This commit is contained in:
Jakub Czekański 2021-12-21 18:15:42 +01:00
parent bcb98952ff
commit c34afd473a

View file

@ -98,7 +98,6 @@ bool CPU::executeInstructions(int count) {
moveLoadDelaySlots();
sys->cycles++;
if (sys->state != System::State::run) return false;
}
return true;
}