From 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Wed, 17 Jun 2020 20:42:54 +0200 Subject: devices/machine, sound and video: removed read and write macros (nw) --- src/devices/machine/68340dma.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices/machine/68340dma.cpp') diff --git a/src/devices/machine/68340dma.cpp b/src/devices/machine/68340dma.cpp index 4a79a4504fc..6cff61a9464 100644 --- a/src/devices/machine/68340dma.cpp +++ b/src/devices/machine/68340dma.cpp @@ -6,7 +6,7 @@ #include "68340.h" -READ32_MEMBER( m68340_cpu_device::m68340_internal_dma_r ) +uint32_t m68340_cpu_device::m68340_internal_dma_r(offs_t offset, uint32_t mem_mask) { assert(m_m68340DMA); //m68340_dma &dma = *m_m68340DMA; @@ -16,7 +16,7 @@ READ32_MEMBER( m68340_cpu_device::m68340_internal_dma_r ) return 0x00000000; } -WRITE32_MEMBER( m68340_cpu_device::m68340_internal_dma_w ) +void m68340_cpu_device::m68340_internal_dma_w(offs_t offset, uint32_t data, uint32_t mem_mask) { assert(m_m68340DMA); //m68340_dma &dma = *m_m68340DMA; -- cgit v1.2.3