From 2d790b172f0f58dcb6f72b2edb6b2323136437b6 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 2 Dec 2019 07:53:29 -0500 Subject: dp8344: Fix return address for LCALL (nw) --- src/devices/cpu/bcp/dp8344.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/devices/cpu/bcp/dp8344.cpp b/src/devices/cpu/bcp/dp8344.cpp index 63502c9b0f9..9f84345772d 100644 --- a/src/devices/cpu/bcp/dp8344.cpp +++ b/src/devices/cpu/bcp/dp8344.cpp @@ -1823,6 +1823,7 @@ void dp8344_device::execute_run() break; case T1_LCALL: + m_pc++; address_stack_push(); m_pc = m_latched_instr; instruction_wait(); -- cgit v1.2.3