summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/28fxxx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/28fxxx.cpp')
-rw-r--r--src/devices/machine/28fxxx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/28fxxx.cpp b/src/devices/machine/28fxxx.cpp
index 0643685589a..e434a761c46 100644
--- a/src/devices/machine/28fxxx.cpp
+++ b/src/devices/machine/28fxxx.cpp
@@ -118,7 +118,7 @@ void base_28fxxx_device::erase()
memset(m_data.get(), 0xff, m_size);
}
-READ8_MEMBER(base_28fxxx_device::read)
+u8 base_28fxxx_device::read(address_space &space, offs_t offset, u8 mem_mask)
{
switch (m_state)
{
@@ -146,7 +146,7 @@ READ8_MEMBER(base_28fxxx_device::read)
}
}
-WRITE8_MEMBER(base_28fxxx_device::write)
+void base_28fxxx_device::write(offs_t offset, u8 data)
{
// writes are ignored unless Vpp is asserted
if (!m_program_power)