cpu/decoder - Remove extraneous comments

This commit is contained in:
madmaurice 2023-08-29 21:27:32 +02:00
parent 39e041f473
commit 43088a7f99

View file

@ -85,9 +85,6 @@ void Cpu::executeInstruction()
}
else if((op & 0xC0) == 0x80) // ADD, ADC, SUB, ABC, CP, AND, OR, XOR
{
// SUB r: 0b10010xxx
// CP r: 0b10111xxx
// SBC r: 0b10011xxx
AluOp aluop = (AluOp)((op >> 3) & 0x3);
u8 rhs;