diff options
Diffstat (limited to 'src/mame/drivers/toobin.cpp')
-rw-r--r-- | src/mame/drivers/toobin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/toobin.cpp b/src/mame/drivers/toobin.cpp index e8ff30c0454..db052459a9b 100644 --- a/src/mame/drivers/toobin.cpp +++ b/src/mame/drivers/toobin.cpp @@ -206,8 +206,8 @@ GFXDECODE_END MACHINE_CONFIG_START(toobin_state::toobin) /* basic machine hardware */ - MCFG_CPU_ADD("maincpu", M68010, MASTER_CLOCK/4) - MCFG_CPU_PROGRAM_MAP(main_map) + MCFG_DEVICE_ADD("maincpu", M68010, MASTER_CLOCK/4) + MCFG_DEVICE_PROGRAM_MAP(main_map) MCFG_EEPROM_2804_ADD("eeprom") MCFG_EEPROM_28XX_LOCK_AFTER_WRITE(true) @@ -232,7 +232,7 @@ MACHINE_CONFIG_START(toobin_state::toobin) /* sound hardware */ MCFG_SPEAKER_STANDARD_STEREO("lspeaker", "rspeaker") - MCFG_ATARI_JSA_I_ADD("jsa", WRITELINE(toobin_state, sound_int_write_line)) + MCFG_ATARI_JSA_I_ADD("jsa", WRITELINE(*this, toobin_state, sound_int_write_line)) MCFG_ATARI_JSA_TEST_PORT("FF9000", 12) MCFG_SOUND_ROUTE(0, "lspeaker", 1.0) MCFG_SOUND_ROUTE(1, "rspeaker", 1.0) |