summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/output_latch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/output_latch.h')
-rw-r--r--src/devices/machine/output_latch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/output_latch.h b/src/devices/machine/output_latch.h
index 923faf38fc3..7bd63414cad 100644
--- a/src/devices/machine/output_latch.h
+++ b/src/devices/machine/output_latch.h
@@ -38,7 +38,7 @@ public:
template <unsigned Bit, class Object> devcb_base &set_bit_handler(Object &&cb) { return m_bit_handlers[Bit].set_callback(std::forward<Object>(cb)); }
void write(uint8_t data);
- DECLARE_WRITE8_MEMBER(write) { write(data); }
+ DECLARE_WRITE8_MEMBER(bus_w) { write(data); }
protected:
virtual void device_resolve_objects() override;