summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ss50
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-08-01 17:07:40 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-08-01 17:07:40 -0400
commit768a48ff60e430d929800d7000065a0b54cef2a8 (patch)
tree50391cec351bd78fae9c7107b6e3a38121b9b3c7 /src/devices/bus/ss50
parentbe9c4ead94f3006d84fc00d1980579cfa68efd98 (diff)
ripple_counter: Finish devcb3 conversion (nw)
Diffstat (limited to 'src/devices/bus/ss50')
-rw-r--r--src/devices/bus/ss50/mpc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ss50/mpc.cpp b/src/devices/bus/ss50/mpc.cpp
index 25a6ed43951..ff606f5e087 100644
--- a/src/devices/bus/ss50/mpc.cpp
+++ b/src/devices/bus/ss50/mpc.cpp
@@ -121,8 +121,8 @@ MACHINE_CONFIG_START(ss50_mpc_device::device_add_mconfig)
MCFG_INPUT_MERGER_ANY_HIGH("loopback")
MCFG_INPUT_MERGER_OUTPUT_HANDLER(WRITELINE("outgate", input_merger_device, in_w<1>))
- MCFG_DEVICE_ADD("counter", RIPPLE_COUNTER, 0) // CD4024AE (IC3)
- MCFG_RIPPLE_COUNTER_STAGES(7) // only Q5 (÷32) and Q4 (÷16) are actually used
+ RIPPLE_COUNTER(config, m_counter); // CD4024AE (IC3)
+ m_counter->set_stages(7); // only Q5 (÷32) and Q4 (÷16) are actually used
MACHINE_CONFIG_END