summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/equites.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-01-07 22:20:14 +0100
committer Olivier Galibert <galibert@pobox.com>2018-01-17 16:11:18 +0100
commitd469cc04bcace0f601802301caeddc5b473b75f2 (patch)
treea9d71540c9c69cee5ab3a533476b81833fa02f5f /src/mame/drivers/equites.cpp
parent9f383f76ce6f00cc3320e5ba53dc323781e0077b (diff)
API Change: Machine configs are now a method of the owner class, and the prototype is simplified [O. Galibert]
Beware, the device context does not follow in MCFG_FRAGMENT_ADD anymore due to the prototype change. So creating a device then configuring through a fragment doesn't work as-is. The simplest solution is just to add a MCFG_DEVICE_MODIFY at the start of the fragment with the correct tag.
Diffstat (limited to 'src/mame/drivers/equites.cpp')
-rw-r--r--src/mame/drivers/equites.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/equites.cpp b/src/mame/drivers/equites.cpp
index d10fbe2b4c6..cf1c2dfb292 100644
--- a/src/mame/drivers/equites.cpp
+++ b/src/mame/drivers/equites.cpp
@@ -1028,7 +1028,7 @@ static const char *const alphamc07_sample_names[] =
#define MSM5232_BASE_VOLUME 1.0
// the sound board is the same in all games
-static MACHINE_CONFIG_START( common_sound )
+MACHINE_CONFIG_START(equites_state::common_sound)
MCFG_CPU_ADD("audiocpu", I8085A, XTAL_6_144MHz) /* verified on pcb */
MCFG_CPU_PROGRAM_MAP(sound_map)
@@ -1127,7 +1127,7 @@ void equites_state::machine_reset()
}
-static MACHINE_CONFIG_START( equites )
+MACHINE_CONFIG_START(equites_state::equites)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000, XTAL_12MHz/4) /* 68000P8 running at 3mhz! verified on pcb */
@@ -1162,7 +1162,7 @@ static MACHINE_CONFIG_START( equites )
MCFG_VIDEO_START_OVERRIDE(equites_state,equites)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( gekisou, equites )
+MACHINE_CONFIG_DERIVED(equites_state::gekisou, equites)
/* basic machine hardware */
MCFG_CPU_MODIFY("maincpu")
@@ -1177,7 +1177,7 @@ static MACHINE_CONFIG_DERIVED( gekisou, equites )
MACHINE_CONFIG_END
-static MACHINE_CONFIG_START( splndrbt )
+MACHINE_CONFIG_START(equites_state::splndrbt)
/* basic machine hardware */
MCFG_CPU_ADD("maincpu", M68000, XTAL_24MHz/4) /* 68000P8 running at 6mhz, verified on pcb */
@@ -1211,7 +1211,7 @@ static MACHINE_CONFIG_START( splndrbt )
MCFG_VIDEO_START_OVERRIDE(equites_state,splndrbt)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED( hvoltage, splndrbt )
+MACHINE_CONFIG_DERIVED(equites_state::hvoltage, splndrbt)
// mcu not dumped, so add simulated mcu
MCFG_CPU_ADD("mcu", ALPHA8301L, 4000000/8)