summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube_arm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube_arm.cpp')
-rw-r--r--src/devices/bus/bbc/tube/tube_arm.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/bbc/tube/tube_arm.cpp b/src/devices/bus/bbc/tube/tube_arm.cpp
index 463a82713be..444e188a657 100644
--- a/src/devices/bus/bbc/tube/tube_arm.cpp
+++ b/src/devices/bus/bbc/tube/tube_arm.cpp
@@ -120,18 +120,18 @@ void bbc_tube_arm_device::device_reset()
// IMPLEMENTATION
//**************************************************************************
-uint8_t bbc_tube_arm_device::host_r(offs_t offset)
+READ8_MEMBER(bbc_tube_arm_device::host_r)
{
- return m_ula->host_r(offset);
+ return m_ula->host_r(space, offset);
}
-void bbc_tube_arm_device::host_w(offs_t offset, uint8_t data)
+WRITE8_MEMBER(bbc_tube_arm_device::host_w)
{
- m_ula->host_w(offset, data);
+ m_ula->host_w(space, offset, data);
}
-uint8_t bbc_tube_arm_device::ram_r(offs_t offset)
+READ8_MEMBER(bbc_tube_arm_device::ram_r)
{
uint8_t data;
@@ -143,7 +143,7 @@ uint8_t bbc_tube_arm_device::ram_r(offs_t offset)
return data;
}
-void bbc_tube_arm_device::ram_w(offs_t offset, uint8_t data)
+WRITE8_MEMBER(bbc_tube_arm_device::ram_w)
{
/* clear ROM select on first write */
if (!machine().side_effects_disabled()) m_rom_select = false;