summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/exidyttl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/exidyttl.cpp')
-rw-r--r--src/mame/drivers/exidyttl.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/exidyttl.cpp b/src/mame/drivers/exidyttl.cpp
index cbaef90b02a..5b6d385ccac 100644
--- a/src/mame/drivers/exidyttl.cpp
+++ b/src/mame/drivers/exidyttl.cpp
@@ -52,7 +52,7 @@ public:
}
// devices
- required_device<netlist_mame_device_t> m_maincpu;
+ required_device<netlist_mame_device> m_maincpu;
required_device<fixedfreq_device> m_video;
protected:
@@ -95,7 +95,7 @@ void exidyttl_state::video_start()
{
}
-static MACHINE_CONFIG_START( attack, exidyttl_state )
+static MACHINE_CONFIG_START( attack )
/* basic machine hardware */
MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK)
@@ -110,7 +110,7 @@ static MACHINE_CONFIG_START( attack, exidyttl_state )
MCFG_FIXFREQ_SYNC_THRESHOLD(0.30)
MACHINE_CONFIG_END
-static MACHINE_CONFIG_START( deathrac, exidyttl_state )
+static MACHINE_CONFIG_START( deathrac )
/* basic machine hardware */
MCFG_DEVICE_ADD("maincpu", NETLIST_CPU, NETLIST_CLOCK)
@@ -211,6 +211,6 @@ ROM_START( deathrac )
ROM_LOAD( "6331-36.t7", 0x0000, 0x0020, CRC(15e00a2a) SHA1(cd43d227a34e5444ed9d8a4acf5497df9c789c73) )
ROM_END
-GAME( 1977, attckexd, 0, attack, 0, driver_device, 0, ROT0, "Exidy", "Attack (Set 1) [TTL]", MACHINE_IS_SKELETON )
-GAME( 1977, attckexd2, attckexd, attack, 0, driver_device, 0, ROT0, "Exidy", "Attack (Set 2) [TTL]", MACHINE_IS_SKELETON )
-GAME( 1976, deathrac, 0, deathrac, 0, driver_device, 0, ROT0, "Exidy", "Death Race [TTL]", MACHINE_IS_SKELETON )
+GAME( 1977, attckexd, 0, attack, 0, exidyttl_state, 0, ROT0, "Exidy", "Attack (Set 1) [TTL]", MACHINE_IS_SKELETON )
+GAME( 1977, attckexd2, attckexd, attack, 0, exidyttl_state, 0, ROT0, "Exidy", "Attack (Set 2) [TTL]", MACHINE_IS_SKELETON )
+GAME( 1976, deathrac, 0, deathrac, 0, exidyttl_state, 0, ROT0, "Exidy", "Death Race [TTL]", MACHINE_IS_SKELETON )