cpu/decoder - Fix comment
This commit is contained in:
parent
77bd32114a
commit
9bc6f935ac
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue