summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/rad_eu3a14.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/rad_eu3a14.cpp')
-rw-r--r--src/mame/drivers/rad_eu3a14.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/rad_eu3a14.cpp b/src/mame/drivers/rad_eu3a14.cpp
index bd423e5e2eb..10533b5ca2d 100644
--- a/src/mame/drivers/rad_eu3a14.cpp
+++ b/src/mame/drivers/rad_eu3a14.cpp
@@ -799,9 +799,9 @@ MACHINE_CONFIG_START(radica_eu3a14_state::radica_eu3a14)
/* sound hardware */
SPEAKER(config, "mono").front_center();
- MCFG_DEVICE_ADD("6ch_sound", RADICA6502_SOUND, 8000)
- MCFG_RADICA6502_SOUND_SPACE_READ_CB(READ8(*this, radica_eu3a14_state, read_full_space))
- MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0)
+ radica6502_sound_device &sound(RADICA6502_SOUND(config, "6ch_sound", 8000));
+ sound.space_read_callback().set(FUNC(radica_eu3a14_state::read_full_space));
+ sound.add_route(ALL_OUTPUTS, "mono", 1.0);
MACHINE_CONFIG_END