summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube_80186.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube_80186.cpp')
-rw-r--r--src/devices/bus/bbc/tube/tube_80186.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/bbc/tube/tube_80186.cpp b/src/devices/bus/bbc/tube/tube_80186.cpp
index 85331ab1b2a..4721d48e534 100644
--- a/src/devices/bus/bbc/tube/tube_80186.cpp
+++ b/src/devices/bus/bbc/tube/tube_80186.cpp
@@ -126,12 +126,12 @@ void bbc_tube_80186_device::device_reset()
// IMPLEMENTATION
//**************************************************************************
-uint8_t bbc_tube_80186_device::host_r(offs_t offset)
+READ8_MEMBER(bbc_tube_80186_device::host_r)
{
- return m_ula->host_r(offset);
+ return m_ula->host_r(space, offset);
}
-void bbc_tube_80186_device::host_w(offs_t offset, uint8_t data)
+WRITE8_MEMBER(bbc_tube_80186_device::host_w)
{
- m_ula->host_w(offset, data);
+ m_ula->host_w(space, offset, data);
}