summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/xerox820.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/xerox820.cpp')
-rw-r--r--src/mame/drivers/xerox820.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mame/drivers/xerox820.cpp b/src/mame/drivers/xerox820.cpp
index ba78325ab91..6f7debdd24f 100644
--- a/src/mame/drivers/xerox820.cpp
+++ b/src/mame/drivers/xerox820.cpp
@@ -545,7 +545,7 @@ GFXDECODE_END
/* Machine Drivers */
-static MACHINE_CONFIG_START( xerox820, xerox820_state )
+static MACHINE_CONFIG_START( xerox820 )
/* basic machine hardware */
MCFG_CPU_ADD(Z80_TAG, Z80, XTAL_20MHz/8)
MCFG_CPU_PROGRAM_MAP(xerox820_mem)
@@ -612,14 +612,14 @@ static MACHINE_CONFIG_START( xerox820, xerox820_state )
MCFG_SOFTWARE_LIST_ADD("flop_list", "xerox820")
MACHINE_CONFIG_END
-static MACHINE_CONFIG_DERIVED_CLASS( bigboard, xerox820, bigboard_state )
+static MACHINE_CONFIG_DERIVED( bigboard, xerox820 )
/* sound hardware */
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_SOUND_ADD("beeper", BEEP, 950)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.00) /* bigboard only */
MACHINE_CONFIG_END
-static MACHINE_CONFIG_START( xerox820ii, xerox820ii_state )
+static MACHINE_CONFIG_START( xerox820ii )
/* basic machine hardware */
MCFG_CPU_ADD(Z80_TAG, Z80, XTAL_16MHz/4)
MCFG_CPU_PROGRAM_MAP(xerox820ii_mem)
@@ -829,10 +829,10 @@ ROM_END
/* System Drivers */
-/* YEAR NAME PARENT COMPAT MACHINE INPUT INIT COMPANY FULLNAME FLAGS */
-COMP( 1980, bigboard, 0, 0, bigboard, xerox820, driver_device, 0, "Digital Research Computers", "Big Board", 0 )
-COMP( 1981, x820, bigboard, 0, xerox820, xerox820, driver_device, 0, "Xerox", "Xerox 820", MACHINE_NO_SOUND_HW )
-COMP( 1982, mk82, bigboard, 0, bigboard, xerox820, driver_device, 0, "Scomar", "MK-82", 0 )
-COMP( 1983, x820ii, 0, 0, xerox820ii, xerox820, driver_device, 0, "Xerox", "Xerox 820-II", MACHINE_NOT_WORKING )
-COMP( 1983, x168, x820ii, 0, xerox168, xerox820, driver_device, 0, "Xerox", "Xerox 16/8", MACHINE_NOT_WORKING )
-COMP( 1983, mk83, x820ii, 0, mk83, xerox820, driver_device, 0, "Scomar", "MK-83", MACHINE_NOT_WORKING | MACHINE_NO_SOUND_HW )
+// YEAR NAME PARENT COMPAT MACHINE INPUT STATE INIT COMPANY FULLNAME FLAGS
+COMP( 1980, bigboard, 0, 0, bigboard, xerox820, bigboard_state, 0, "Digital Research Computers", "Big Board", 0 )
+COMP( 1981, x820, bigboard, 0, xerox820, xerox820, xerox820_state, 0, "Xerox", "Xerox 820", MACHINE_NO_SOUND_HW )
+COMP( 1982, mk82, bigboard, 0, bigboard, xerox820, bigboard_state, 0, "Scomar", "MK-82", 0 )
+COMP( 1983, x820ii, 0, 0, xerox820ii, xerox820, xerox820ii_state, 0, "Xerox", "Xerox 820-II", MACHINE_NOT_WORKING )
+COMP( 1983, x168, x820ii, 0, xerox168, xerox820, xerox820ii_state, 0, "Xerox", "Xerox 16/8", MACHINE_NOT_WORKING )
+COMP( 1983, mk83, x820ii, 0, mk83, xerox820, xerox820_state, 0, "Scomar", "MK-83", MACHINE_NOT_WORKING | MACHINE_NO_SOUND_HW )