summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-12-02 07:53:29 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-12-02 07:53:29 -0500
commit2d790b172f0f58dcb6f72b2edb6b2323136437b6 (patch)
tree3ae1eee05ec230220fdf15876da4dfeb2e48c994 /src/devices
parentff08f7d99c967dc4550d32f51101a1841f506631 (diff)
dp8344: Fix return address for LCALL (nw)
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/cpu/bcp/dp8344.cpp1
1 files changed, 1 insertions, 0 deletions
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();