Emulator: Fix LD A,a16 opcode: 0xfa

This commit is contained in:
Riyyi
2022-09-01 14:26:58 +02:00
parent cc46a45a73
commit c8ad40c128
+5 -1
View File
@@ -878,7 +878,9 @@ void CPU::lda8()
break;
case 0xfa: // LD A,a16
m_wait_cycles += 16;
m_a = pcRead16();
// Load value in register A from the byte pointed to by register r16
m_a = read(pcRead16());
break;
default:
VERIFY_NOT_REACHED();
@@ -1167,6 +1169,8 @@ void CPU::ldr8()
}
case 0xea: /* LD a16,A */ {
m_wait_cycles += 12; // + 4 = 16 total
// Store value in register A into the byte at address a16
write(pcRead16(), m_a);
break;
}