summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-12 21:35:14 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-12 21:36:05 -0500
commitf99e295ad797545d02d9954620fb149d69d38860 (patch)
treef0bda93e85b42a2d1f17d360ae5e4d37c3529bfd
parentffbfc3c09954977da9aeecf8af0bb933c338a44d (diff)
cosmac: Don't skip over instructions in debugger after DMA cycles
(nw) This does nothing to fix MT #7232, but could make the problem easier to debug.
-rw-r--r--src/devices/cpu/cosmac/cosmac.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/cpu/cosmac/cosmac.cpp b/src/devices/cpu/cosmac/cosmac.cpp
index 0a7bd554d93..e4155a514c7 100644
--- a/src/devices/cpu/cosmac/cosmac.cpp
+++ b/src/devices/cpu/cosmac/cosmac.cpp
@@ -733,10 +733,12 @@ inline void cosmac_device::run_state()
case cosmac_state::STATE_2_DMA_IN:
dma_input();
+ debug();
break;
case cosmac_state::STATE_2_DMA_OUT:
dma_output();
+ debug();
break;
case cosmac_state::STATE_3_INT: