summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/m6805evs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/m6805evs.cpp')
-rw-r--r--src/mame/drivers/m6805evs.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mame/drivers/m6805evs.cpp b/src/mame/drivers/m6805evs.cpp
index 0212023cd9a..a7789452380 100644
--- a/src/mame/drivers/m6805evs.cpp
+++ b/src/mame/drivers/m6805evs.cpp
@@ -102,14 +102,13 @@ void m6805evs_state::machine_reset()
{
}
-void m6805evs_state::m6805evs(machine_config &config)
-{
+MACHINE_CONFIG_START(m6805evs_state::m6805evs)
/* basic machine hardware */
- M6805(config, m_maincpu, XTAL(4'000'000));
+ MCFG_DEVICE_ADD("maincpu", M6805, XTAL(4'000'000))
// Needs a 13-bits address bus wide version of the cpu
-// m_maincpu->set_addrmap(AS_PROGRAM, &m6805evs_state::mem_map);
-}
+// MCFG_DEVICE_PROGRAM_MAP(mem_map)
+MACHINE_CONFIG_END
ROM_START(m6805evs)
ROM_REGION(0x2000, "eprom", 0)