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 c4debe1e3b6..ef07509a8f3 100644
--- a/src/mame/drivers/caprcyc.cpp
+++ b/src/mame/drivers/caprcyc.cpp
@@ -63,17 +63,17 @@ INPUT_PORTS_END
***************************************************************************/
-void caprcyc_state::caprcyc(machine_config &config)
-{
+MACHINE_CONFIG_START(caprcyc_state::caprcyc)
+
/* basic machine hardware */
- VR4300BE(config, m_maincpu, 100000000); // cpu configuration is unknown
- m_maincpu->set_addrmap(AS_PROGRAM, &caprcyc_state::caprcyc_map);
+ MCFG_DEVICE_ADD("maincpu", VR4300BE, 100000000) // cpu configuration is unknown
+ MCFG_DEVICE_PROGRAM_MAP(caprcyc_map)
/* no video! */
/* sound hardware */
//..
-}
+MACHINE_CONFIG_END