cpu/decoder - Fix comment

This commit is contained in:
madmaurice 2023-08-30 13:40:38 +02:00
parent 77bd32114a
commit 9bc6f935ac

View file

@ -83,7 +83,7 @@ void Cpu::executeInstruction()
mcycles = 4;
}
else if((op & 0xC0) == 0x80) // ADD, ADC, SUB, ABC, CP, AND, OR, XOR
else if((op & 0xC0) == 0x80) // ADD, ADC, SUB, SBC, CP, AND, OR, XOR
{
AluOp aluop = (AluOp)((op >> 3) & 0x3);
u8 reg = op & 0x7;