summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/thayers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/thayers.cpp')
-rw-r--r--src/mame/drivers/thayers.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mame/drivers/thayers.cpp b/src/mame/drivers/thayers.cpp
index 21aec9a1c0d..eb0fe6d3732 100644
--- a/src/mame/drivers/thayers.cpp
+++ b/src/mame/drivers/thayers.cpp
@@ -797,19 +797,19 @@ void thayers_state::machine_reset()
MACHINE_CONFIG_START(thayers_state::thayers)
/* basic machine hardware */
- MCFG_CPU_ADD("maincpu", Z80, XTAL(4'000'000))
- MCFG_CPU_PROGRAM_MAP(thayers_map)
- MCFG_CPU_IO_MAP(thayers_io_map)
+ MCFG_DEVICE_ADD("maincpu", Z80, XTAL(4'000'000))
+ MCFG_DEVICE_PROGRAM_MAP(thayers_map)
+ MCFG_DEVICE_IO_MAP(thayers_io_map)
- MCFG_CPU_ADD("mcu", COP421, XTAL(4'000'000)/2) // COP421L-PCA/N
+ MCFG_DEVICE_ADD("mcu", COP421, XTAL(4'000'000)/2) // COP421L-PCA/N
MCFG_COP400_CONFIG( COP400_CKI_DIVISOR_16, COP400_CKO_OSCILLATOR_OUTPUT, false )
- MCFG_COP400_READ_L_CB(READ8(thayers_state, cop_l_r))
- MCFG_COP400_WRITE_L_CB(WRITE8(thayers_state, cop_l_w))
- MCFG_COP400_READ_G_CB(READ8(thayers_state, cop_g_r))
- MCFG_COP400_WRITE_G_CB(WRITE8(thayers_state, cop_g_w))
- MCFG_COP400_WRITE_D_CB(WRITE8(thayers_state, cop_d_w))
- MCFG_COP400_READ_SI_CB(READLINE(thayers_state, kbdata_r))
- MCFG_COP400_WRITE_SO_CB(WRITELINE(thayers_state, kbclk_w))
+ MCFG_COP400_READ_L_CB(READ8(*this, thayers_state, cop_l_r))
+ MCFG_COP400_WRITE_L_CB(WRITE8(*this, thayers_state, cop_l_w))
+ MCFG_COP400_READ_G_CB(READ8(*this, thayers_state, cop_g_r))
+ MCFG_COP400_WRITE_G_CB(WRITE8(*this, thayers_state, cop_g_w))
+ MCFG_COP400_WRITE_D_CB(WRITE8(*this, thayers_state, cop_d_w))
+ MCFG_COP400_READ_SI_CB(READLINE(*this, thayers_state, kbdata_r))
+ MCFG_COP400_WRITE_SO_CB(WRITELINE(*this, thayers_state, kbclk_w))
MCFG_LASERDISC_PR7820_ADD("laserdisc")
@@ -822,7 +822,7 @@ MACHINE_CONFIG_START(thayers_state::thayers)
MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker")
// SSI 263 @ 2MHz
- MCFG_SOUND_MODIFY("laserdisc")
+ MCFG_DEVICE_MODIFY("laserdisc")
MCFG_SOUND_ROUTE(0, "lspeaker", 1.0)
MCFG_SOUND_ROUTE(1, "rspeaker", 1.0)
MACHINE_CONFIG_END