summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/xavix_adc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/xavix_adc.cpp')
-rw-r--r--src/mame/machine/xavix_adc.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/xavix_adc.cpp b/src/mame/machine/xavix_adc.cpp
index 6d171c8018d..527f6d542e2 100644
--- a/src/mame/machine/xavix_adc.cpp
+++ b/src/mame/machine/xavix_adc.cpp
@@ -52,19 +52,19 @@ void xavix_adc_device::device_reset()
}
-READ8_MEMBER(xavix_adc_device::adc_7b80_r)
+uint8_t xavix_adc_device::adc_7b80_r()
{
LOG("%s: adc_7b80_r\n", machine().describe_context());
return m_adc_inlatch;
}
-WRITE8_MEMBER(xavix_adc_device::adc_7b80_w)
+void xavix_adc_device::adc_7b80_w(uint8_t data)
{
// is the latch writeable?
LOG("%s: adc_7b80_w %02x\n", machine().describe_context(), data);
}
-WRITE8_MEMBER(xavix_adc_device::adc_7b81_w)
+void xavix_adc_device::adc_7b81_w(uint8_t data)
{
// m_irqsource &= ~0x04;
// update_irqs();
@@ -91,7 +91,7 @@ WRITE8_MEMBER(xavix_adc_device::adc_7b81_w)
// m_adc_timer->adjust(attotime::from_usec(200));
}
-READ8_MEMBER(xavix_adc_device::adc_7b81_r)
+uint8_t xavix_adc_device::adc_7b81_r()
{
// has_wamg polls this if interrupt is enabled
return machine().rand();