From 43088a7f993ca139b312e2b706bbb3ec873fdcee Mon Sep 17 00:00:00 2001 From: MadMaurice Date: Tue, 29 Aug 2023 21:27:32 +0200 Subject: [PATCH] cpu/decoder - Remove extraneous comments --- cpu/decoder.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/cpu/decoder.cpp b/cpu/decoder.cpp index 9dfd0e8..0578d4f 100644 --- a/cpu/decoder.cpp +++ b/cpu/decoder.cpp @@ -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;