summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hexbus/hx5102.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hexbus/hx5102.cpp')
-rw-r--r--src/devices/bus/hexbus/hx5102.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/hexbus/hx5102.cpp b/src/devices/bus/hexbus/hx5102.cpp
index f5d91e9b62d..58e71670c8e 100644
--- a/src/devices/bus/hexbus/hx5102.cpp
+++ b/src/devices/bus/hexbus/hx5102.cpp
@@ -714,8 +714,8 @@ MACHINE_CONFIG_START(hx5102_device::device_add_mconfig)
m_speedmf->out_cb().set(FUNC(hx5102_device::mspeed_w));
// READY flipflop
- MCFG_DEVICE_ADD(READYFF_TAG, TTL7474, 0)
- MCFG_7474_COMP_OUTPUT_CB(WRITELINE(*this, hx5102_device, board_ready))
+ TTL7474(config, m_readyff, 0);
+ m_readyff->comp_output_cb().set(FUNC(hx5102_device::board_ready));
// RAM
MCFG_RAM_ADD(RAM1_TAG)