Optimisation: the NOP is meaningless

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2022-07-13 07:44:47 +01:00
parent 9e2c3e32b1
commit 0ca0e1da36

View File

@ -460,7 +460,7 @@ int EightBit::GameBoy::LR35902::step() noexcept {
handleINT();
} else if (UNLIKELY(lowered(HALT()))) {
IntelProcessor::memoryRead(PC());
Processor::execute(0); // NOP
//Processor::execute(0); // NOP
} else {
Processor::execute(fetchByte());
}