summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68340dma.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-02-11 16:47:02 -0500
committer AJR <ajrhacker@users.noreply.github.com>2019-02-11 16:47:02 -0500
commit2d149e21c9786d159cbde0cecf19ae531dffbd01 (patch)
tree0c27e5aa0486f7e17ed62a05e9ac6acb8419893c /src/devices/machine/68340dma.cpp
parenta905dffd08abdabad3d3e0cfd1c56eb1d91376cf (diff)
m68000: Add overrideable method to signal RESET instruction to internal peripherals (nw)
Diffstat (limited to 'src/devices/machine/68340dma.cpp')
-rw-r--r--src/devices/machine/68340dma.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/devices/machine/68340dma.cpp b/src/devices/machine/68340dma.cpp
index 6649aeb2a94..4a79a4504fc 100644
--- a/src/devices/machine/68340dma.cpp
+++ b/src/devices/machine/68340dma.cpp
@@ -26,4 +26,9 @@ WRITE32_MEMBER( m68340_cpu_device::m68340_internal_dma_w )
void m68340_dma::reset()
{
+ module_reset();
+}
+
+void m68340_dma::module_reset()
+{
}