summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/namco50.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/namco50.cpp')
-rw-r--r--src/mame/machine/namco50.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/machine/namco50.cpp b/src/mame/machine/namco50.cpp
index 0490ef47308..66500d6e05b 100644
--- a/src/mame/machine/namco50.cpp
+++ b/src/mame/machine/namco50.cpp
@@ -251,11 +251,11 @@ void namco_50xx_device::device_start()
//-------------------------------------------------
MACHINE_CONFIG_START(namco_50xx_device::device_add_mconfig)
- MCFG_CPU_ADD("mcu", MB8842, DERIVED_CLOCK(1,1)) /* parent clock, internally divided by 6 */
- MCFG_MB88XX_READ_K_CB(READ8(namco_50xx_device, K_r))
- MCFG_MB88XX_WRITE_O_CB(WRITE8(namco_50xx_device, O_w))
- MCFG_MB88XX_READ_R0_CB(READ8(namco_50xx_device, R0_r))
- MCFG_MB88XX_READ_R2_CB(READ8(namco_50xx_device, R2_r))
+ MCFG_DEVICE_ADD("mcu", MB8842, DERIVED_CLOCK(1,1)) /* parent clock, internally divided by 6 */
+ MCFG_MB88XX_READ_K_CB(READ8(*this, namco_50xx_device, K_r))
+ MCFG_MB88XX_WRITE_O_CB(WRITE8(*this, namco_50xx_device, O_w))
+ MCFG_MB88XX_READ_R0_CB(READ8(*this, namco_50xx_device, R0_r))
+ MCFG_MB88XX_READ_R2_CB(READ8(*this, namco_50xx_device, R2_r))
MACHINE_CONFIG_END
//-------------------------------------------------