cpu/decoder - Remove extraneous comments
This commit is contained in:
parent
39e041f473
commit
43088a7f99
1 changed files with 0 additions and 3 deletions
|
@ -85,9 +85,6 @@ void Cpu::executeInstruction()
|
||||||
}
|
}
|
||||||
else if((op & 0xC0) == 0x80) // ADD, ADC, SUB, ABC, CP, AND, OR, XOR
|
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);
|
AluOp aluop = (AluOp)((op >> 3) & 0x3);
|
||||||
|
|
||||||
u8 rhs;
|
u8 rhs;
|
||||||
|
|
Loading…
Reference in a new issue