From f99e295ad797545d02d9954620fb149d69d38860 Mon Sep 17 00:00:00 2001 From: AJR Date: Tue, 12 Feb 2019 21:35:14 -0500 Subject: 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. --- src/devices/cpu/cosmac/cosmac.cpp | 2 ++ 1 file changed, 2 insertions(+) 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: -- cgit v1.2.3