cpu/decoder - Fix comment
This commit is contained in:
parent
efc6762068
commit
7d1d20becf
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ void Cpu::executeInstruction()
|
|||
state.reg16((op >> 4) & 0x3) += 1;
|
||||
mcycles = 2;
|
||||
}
|
||||
else if((op & 0xCF) == 0x0B) // INC rr
|
||||
else if((op & 0xCF) == 0x0B) // DEC rr
|
||||
{
|
||||
state.reg16((op >> 4) & 0x3) -= 1;
|
||||
mcycles = 2;
|
||||
|
|
Loading…
Reference in a new issue