diff options
Diffstat (limited to 'src/mame/drivers/cupidon.cpp')
-rw-r--r-- | src/mame/drivers/cupidon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/cupidon.cpp b/src/mame/drivers/cupidon.cpp index 1e53524984d..f245c0e8217 100644 --- a/src/mame/drivers/cupidon.cpp +++ b/src/mame/drivers/cupidon.cpp @@ -103,8 +103,8 @@ INPUT_PORTS_END MACHINE_CONFIG_START(cupidon_state::cupidon) - MCFG_CPU_ADD("maincpu", M68340, 16000000) // The access to 3FF00 at the start would suggest this is a 68340 so probably 16 or 25 mhz? - MCFG_CPU_PROGRAM_MAP(cupidon_map) + MCFG_DEVICE_ADD("maincpu", M68340, 16000000) // The access to 3FF00 at the start would suggest this is a 68340 so probably 16 or 25 mhz? + MCFG_DEVICE_PROGRAM_MAP(cupidon_map) MCFG_SCREEN_ADD("screen", RASTER) MCFG_SCREEN_REFRESH_RATE(60) |