summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gokidetor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gokidetor.cpp')
-rw-r--r--src/mame/drivers/gokidetor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/gokidetor.cpp b/src/mame/drivers/gokidetor.cpp
index 756ec1e24cc..0a76a92b090 100644
--- a/src/mame/drivers/gokidetor.cpp
+++ b/src/mame/drivers/gokidetor.cpp
@@ -143,9 +143,9 @@ MACHINE_CONFIG_START(gokidetor_state::gokidetor)
MCFG_DEVICE_ADD("soundcpu", Z80, 4000000)
MCFG_DEVICE_PROGRAM_MAP(sound_map)
- MCFG_DEVICE_ADD("ciu", PC060HA, 0)
- MCFG_PC060HA_MASTER_CPU("maincpu")
- MCFG_PC060HA_SLAVE_CPU("soundcpu")
+ pc060ha_device &ciu(PC060HA(config, "ciu", 0));
+ ciu.set_master_tag(m_maincpu);
+ ciu.set_slave_tag("soundcpu");
SPEAKER(config, "mono").front_center();