summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/tube.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/tube.cpp')
-rw-r--r--src/devices/machine/tube.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/tube.cpp b/src/devices/machine/tube.cpp
index aac084a3158..a53c05ac38c 100644
--- a/src/devices/machine/tube.cpp
+++ b/src/devices/machine/tube.cpp
@@ -79,7 +79,7 @@ void tube_device::update_interrupts()
m_drq_handler(!BIT(m_r1stat, 4) && ((m_hp3pos > BIT(m_r1stat, 4)) || (m_ph3pos == 0)) ? ASSERT_LINE : CLEAR_LINE);
}
-READ8_MEMBER(tube_device::host_r)
+uint8_t tube_device::host_r(offs_t offset)
{
uint8_t data = 0xfe;
@@ -143,7 +143,7 @@ READ8_MEMBER(tube_device::host_r)
return data;
}
-WRITE8_MEMBER(tube_device::host_w)
+void tube_device::host_w(offs_t offset, uint8_t data)
{
switch (offset & 0x07)
{
@@ -197,7 +197,7 @@ WRITE8_MEMBER(tube_device::host_w)
update_interrupts();
}
-READ8_MEMBER(tube_device::parasite_r)
+uint8_t tube_device::parasite_r(offs_t offset)
{
uint8_t data = 0x00;
@@ -265,7 +265,7 @@ READ8_MEMBER(tube_device::parasite_r)
return data;
}
-WRITE8_MEMBER(tube_device::parasite_w)
+void tube_device::parasite_w(offs_t offset, uint8_t data)
{
switch (offset & 0x07)
{