summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/m3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/m3.cpp')
-rw-r--r--src/mame/drivers/m3.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/m3.cpp b/src/mame/drivers/m3.cpp
index b6661dbcd8b..f053cd1111c 100644
--- a/src/mame/drivers/m3.cpp
+++ b/src/mame/drivers/m3.cpp
@@ -113,9 +113,9 @@ void m3_state::machine_reset()
}
MACHINE_CONFIG_START(m3_state::m3)
- MCFG_CPU_ADD("maincpu", Z80, 2'000'000) // no idea of clock.
- MCFG_CPU_PROGRAM_MAP(mem_map)
- MCFG_CPU_IO_MAP(io_map)
+ MCFG_DEVICE_ADD("maincpu", Z80, 2'000'000) // no idea of clock.
+ MCFG_DEVICE_PROGRAM_MAP(mem_map)
+ MCFG_DEVICE_IO_MAP(io_map)
/* video hardware */
MCFG_SCREEN_ADD_MONOCHROME("screen", RASTER, rgb_t::green())