summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube_casper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube_casper.cpp')
-rw-r--r--src/devices/bus/bbc/tube/tube_casper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bbc/tube/tube_casper.cpp b/src/devices/bus/bbc/tube/tube_casper.cpp
index f6bb4bdce84..db84143f553 100644
--- a/src/devices/bus/bbc/tube/tube_casper.cpp
+++ b/src/devices/bus/bbc/tube/tube_casper.cpp
@@ -109,12 +109,12 @@ void bbc_tube_casper_device::device_start()
// IMPLEMENTATION
//**************************************************************************
-uint8_t bbc_tube_casper_device::host_r(offs_t offset)
+READ8_MEMBER(bbc_tube_casper_device::host_r)
{
return m_via6522_0->read(offset & 0xf);
}
-void bbc_tube_casper_device::host_w(offs_t offset, uint8_t data)
+WRITE8_MEMBER(bbc_tube_casper_device::host_w)
{
m_via6522_0->write(offset & 0xf, data);
}