cpu/decoder - Fix comment

This commit is contained in:
madmaurice 2023-08-30 00:36:20 +02:00
parent efc6762068
commit 7d1d20becf

View file

@ -114,7 +114,7 @@ void Cpu::executeInstruction()
state.reg16((op >> 4) & 0x3) += 1; state.reg16((op >> 4) & 0x3) += 1;
mcycles = 2; mcycles = 2;
} }
else if((op & 0xCF) == 0x0B) // INC rr else if((op & 0xCF) == 0x0B) // DEC rr
{ {
state.reg16((op >> 4) & 0x3) -= 1; state.reg16((op >> 4) & 0x3) -= 1;
mcycles = 2; mcycles = 2;