decoder - Disable debug printf

This commit is contained in:
madmaurice 2023-08-28 23:08:33 +02:00
parent 0ce79045e3
commit 763fe13f5a

View file

@ -13,7 +13,9 @@ void Cpu::executeInstruction()
opcode_t op = readPC8();
int mcycles = 1;
#if 0
printf("@0x%04x: opcode %02X\n",currentpc,op);
#endif
if ((op & 0xC0) == 0x40 && op != 0x76) // LD r, r'
{