summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/ds1386.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/ds1386.cpp')
-rw-r--r--src/devices/machine/ds1386.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ds1386.cpp b/src/devices/machine/ds1386.cpp
index 0f430413017..c5a9048f2fc 100644
--- a/src/devices/machine/ds1386.cpp
+++ b/src/devices/machine/ds1386.cpp
@@ -422,7 +422,7 @@ void ds1386_device::nvram_write(emu_file &file)
file.write(&m_ram[0], m_ram_size);
}
-WRITE8_MEMBER( ds1386_device::data_w )
+void ds1386_device::data_w(offs_t offset, uint8_t data)
{
if (offset >= m_ram_size)
return;
@@ -582,7 +582,7 @@ WRITE8_MEMBER( ds1386_device::data_w )
}
}
-READ8_MEMBER( ds1386_device::data_r )
+uint8_t ds1386_device::data_r(offs_t offset)
{
if (offset >= m_ram_size)
return 0;