summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/cpm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/cpm.cpp')
-rw-r--r--src/devices/bus/c64/cpm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/cpm.cpp b/src/devices/bus/c64/cpm.cpp
index 7a909f6e920..02a5ccb029b 100644
--- a/src/devices/bus/c64/cpm.cpp
+++ b/src/devices/bus/c64/cpm.cpp
@@ -193,7 +193,7 @@ int c64_cpm_cartridge_device::c64_game_r(offs_t offset, int sphi2, int ba, int r
// dma_r -
//-------------------------------------------------
-READ8_MEMBER( c64_cpm_cartridge_device::dma_r )
+uint8_t c64_cpm_cartridge_device::dma_r(offs_t offset)
{
uint8_t data = 0xff;
@@ -212,7 +212,7 @@ READ8_MEMBER( c64_cpm_cartridge_device::dma_r )
// dma_w -
//-------------------------------------------------
-WRITE8_MEMBER( c64_cpm_cartridge_device::dma_w )
+void c64_cpm_cartridge_device::dma_w(offs_t offset, uint8_t data)
{
if (m_enabled)
{