diff options
| author | 2020-06-17 20:42:54 +0200 | |
|---|---|---|
| committer | 2020-06-17 20:42:54 +0200 | |
| commit | 6dff78ed3ab09b83ac0aa8dc08dea227b07562a3 (patch) | |
| tree | 92e33e37cb30e2b4f8829eb3dec8e7c8674b6bb4 /src/devices/machine/68340dma.cpp | |
| parent | 247d71e1cabe101bd29adee2abc57fb86215a911 (diff) | |
devices/machine, sound and video: removed read and write macros (nw)
Diffstat (limited to 'src/devices/machine/68340dma.cpp')
| -rw-r--r-- | src/devices/machine/68340dma.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
