Emulator: Fix LD L,(HL) opcode 0x6e

This commit is contained in:
Riyyi
2022-09-01 14:26:58 +02:00
parent 92c0236f2a
commit c396e7fcf6
+1 -1
View File
@@ -1107,7 +1107,7 @@ void CPU::ldr8()
case 0x6d: /* LD L,L m_l = m_l; */ break;
case 0x6e: /* LD L,(HL) */ {
m_wait_cycles += 4; // + 4 = 8 total
m_e = read(hl());
m_l = read(hl());
break;
}
case 0x6f: /* LD L,A */ m_l = m_a; break;