summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/cdp1879.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/cdp1879.cpp')
-rw-r--r--src/devices/machine/cdp1879.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/cdp1879.cpp b/src/devices/machine/cdp1879.cpp
index 206709f9a8d..eee9df590b5 100644
--- a/src/devices/machine/cdp1879.cpp
+++ b/src/devices/machine/cdp1879.cpp
@@ -114,7 +114,7 @@ void cdp1879_device::update_rtc()
set_clock_register(RTC_MONTH, bcd_to_integer(m_regs[R_CNT_MONTH]));
}
-READ8_MEMBER(cdp1879_device::read)
+uint8_t cdp1879_device::read(offs_t offset)
{
if (offset == R_CTL_IRQSTATUS && !machine().side_effects_disabled())
{
@@ -128,7 +128,7 @@ READ8_MEMBER(cdp1879_device::read)
return m_regs[offset];
}
-WRITE8_MEMBER(cdp1879_device::write)
+void cdp1879_device::write(offs_t offset, uint8_t data)
{
switch (offset)
{