decoder - Disable debug printf
This commit is contained in:
parent
0ce79045e3
commit
763fe13f5a
1 changed files with 2 additions and 0 deletions
|
@ -13,7 +13,9 @@ void Cpu::executeInstruction()
|
||||||
opcode_t op = readPC8();
|
opcode_t op = readPC8();
|
||||||
int mcycles = 1;
|
int mcycles = 1;
|
||||||
|
|
||||||
|
#if 0
|
||||||
printf("@0x%04x: opcode %02X\n",currentpc,op);
|
printf("@0x%04x: opcode %02X\n",currentpc,op);
|
||||||
|
#endif
|
||||||
|
|
||||||
if ((op & 0xC0) == 0x40 && op != 0x76) // LD r, r'
|
if ((op & 0xC0) == 0x40 && op != 0x76) // LD r, r'
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue