diff options
author | 2020-03-25 18:26:17 +0100 | |
---|---|---|
committer | 2020-03-25 18:26:17 +0100 | |
commit | dc83375dcaaecddc3302cc9eddb0e39b17cb3f04 (patch) | |
tree | 82dcab9a2efc60b449f3c5a53cc0bee5437b2d46 /src/devices/machine/28fxxx.cpp | |
parent | 3a15530fa5afafd6fff1e226ffce9aabb0993b3c (diff) |
devices/machine: simplified more handlers (nw)
Diffstat (limited to 'src/devices/machine/28fxxx.cpp')
-rw-r--r-- | src/devices/machine/28fxxx.cpp | 4 |
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) |