summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/caprcyc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/caprcyc.cpp')
-rw-r--r--src/mame/drivers/caprcyc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/caprcyc.cpp b/src/mame/drivers/caprcyc.cpp
index ef07509a8f3..c4debe1e3b6 100644
--- a/src/mame/drivers/caprcyc.cpp
+++ b/src/mame/drivers/caprcyc.cpp
@@ -63,17 +63,17 @@ INPUT_PORTS_END
***************************************************************************/
-MACHINE_CONFIG_START(caprcyc_state::caprcyc)
-
+void caprcyc_state::caprcyc(machine_config &config)
+{
/* basic machine hardware */
- MCFG_DEVICE_ADD("maincpu", VR4300BE, 100000000) // cpu configuration is unknown
- MCFG_DEVICE_PROGRAM_MAP(caprcyc_map)
+ VR4300BE(config, m_maincpu, 100000000); // cpu configuration is unknown
+ m_maincpu->set_addrmap(AS_PROGRAM, &caprcyc_state::caprcyc_map);
/* no video! */
/* sound hardware */
//..
-MACHINE_CONFIG_END
+}