summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cfx9850.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cfx9850.cpp')
-rw-r--r--src/mame/drivers/cfx9850.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/cfx9850.cpp b/src/mame/drivers/cfx9850.cpp
index aa8b5ec3f7f..683307d00bb 100644
--- a/src/mame/drivers/cfx9850.cpp
+++ b/src/mame/drivers/cfx9850.cpp
@@ -283,14 +283,14 @@ u32 cfx9850_state::screen_update_cfx9850(screen_device &screen, bitmap_ind16 &bi
MACHINE_CONFIG_START(cfx9850_state::cfx9850)
- MCFG_CPU_ADD("maincpu", HCD62121, 4300000) /* X1 - 4.3 MHz */
- MCFG_CPU_PROGRAM_MAP(cfx9850)
- MCFG_HCD62121_KOL_CB(WRITE8(cfx9850_state, kol_w))
- MCFG_HCD62121_KOH_CB(WRITE8(cfx9850_state, koh_w))
- MCFG_HCD62121_PORT_CB(WRITE8(cfx9850_state, port_w))
- MCFG_HCD62121_OPT_CB(WRITE8(cfx9850_state, opt_w))
- MCFG_HCD62121_KI_CB(READ8(cfx9850_state, ki_r))
- MCFG_HCD62121_IN0_CB(READ8(cfx9850_state, in0_r))
+ MCFG_DEVICE_ADD("maincpu", HCD62121, 4300000) /* X1 - 4.3 MHz */
+ MCFG_DEVICE_PROGRAM_MAP(cfx9850)
+ MCFG_HCD62121_KOL_CB(WRITE8(*this, cfx9850_state, kol_w))
+ MCFG_HCD62121_KOH_CB(WRITE8(*this, cfx9850_state, koh_w))
+ MCFG_HCD62121_PORT_CB(WRITE8(*this, cfx9850_state, port_w))
+ MCFG_HCD62121_OPT_CB(WRITE8(*this, cfx9850_state, opt_w))
+ MCFG_HCD62121_KI_CB(READ8(*this, cfx9850_state, ki_r))
+ MCFG_HCD62121_IN0_CB(READ8(*this, cfx9850_state, in0_r))
MCFG_SCREEN_ADD("screen", LCD)
MCFG_SCREEN_REFRESH_RATE(60)