summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube_32016.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube_32016.cpp')
-rw-r--r--src/devices/bus/bbc/tube/tube_32016.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bbc/tube/tube_32016.cpp b/src/devices/bus/bbc/tube/tube_32016.cpp
index 7b6ac355e42..164ab0ff089 100644
--- a/src/devices/bus/bbc/tube/tube_32016.cpp
+++ b/src/devices/bus/bbc/tube/tube_32016.cpp
@@ -188,7 +188,7 @@ void bbc_tube_32016_device::host_w(offs_t offset, uint8_t data)
}
-READ8_MEMBER(bbc_tube_32016_device::read)
+uint8_t bbc_tube_32016_device::read(offs_t offset)
{
uint16_t data = 0xffff;
@@ -200,7 +200,7 @@ READ8_MEMBER(bbc_tube_32016_device::read)
return data;
}
-WRITE8_MEMBER(bbc_tube_32016_device::write)
+void bbc_tube_32016_device::write(offs_t offset, uint8_t data)
{
/* clear ROM select on first write */
if (!machine().side_effects_disabled()) m_rom_enabled = false;