summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/buffer.h')
-rw-r--r--src/devices/machine/buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/buffer.h b/src/devices/machine/buffer.h
index 7f5724ad48b..ab08e01ba47 100644
--- a/src/devices/machine/buffer.h
+++ b/src/devices/machine/buffer.h
@@ -9,7 +9,7 @@ public:
input_buffer_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
uint8_t read() { return m_input_data; }
- DECLARE_READ8_MEMBER(read) { return read(); }
+ DECLARE_READ8_MEMBER(bus_r) { return read(); }
DECLARE_WRITE_LINE_MEMBER(write_bit0) { if (state) m_input_data |= 0x01; else m_input_data &= ~0x01; }
DECLARE_WRITE_LINE_MEMBER(write_bit1) { if (state) m_input_data |= 0x02; else m_input_data &= ~0x02; }