summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/phoenix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/phoenix.cpp')
-rw-r--r--src/mame/drivers/phoenix.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mame/drivers/phoenix.cpp b/src/mame/drivers/phoenix.cpp
index 703e90a1fc0..58e8c6390b0 100644
--- a/src/mame/drivers/phoenix.cpp
+++ b/src/mame/drivers/phoenix.cpp
@@ -435,19 +435,12 @@ static GFXDECODE_START( gfx_pleiads )
GFXDECODE_END
-MACHINE_RESET_MEMBER(phoenix_state,phoenix)
-{
-}
-
-
void phoenix_state::phoenix(machine_config &config)
{
/* basic machine hardware */
I8085A(config, m_maincpu, CPU_CLOCK); /* 2.75 MHz */
m_maincpu->set_addrmap(AS_PROGRAM, &phoenix_state::phoenix_memory_map);
- MCFG_MACHINE_RESET_OVERRIDE(phoenix_state,phoenix)
-
/* video hardware */
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
screen.set_raw(PIXEL_CLOCK, HTOTAL, HBEND, HBSTART, VTOTAL, VBEND, VBSTART);
@@ -457,8 +450,6 @@ void phoenix_state::phoenix(machine_config &config)
GFXDECODE(config, m_gfxdecode, m_palette, gfx_phoenix);
PALETTE(config, m_palette, FUNC(phoenix_state::phoenix_palette), 256);
- MCFG_VIDEO_START_OVERRIDE(phoenix_state,phoenix)
-
/* sound hardware */
SPEAKER(config, "mono").front_center();
@@ -510,8 +501,6 @@ void phoenix_state::survival(machine_config &config)
maincpu.in_sid_func().set(FUNC(phoenix_state::survival_sid_callback));
maincpu.set_addrmap(AS_PROGRAM, &phoenix_state::survival_memory_map);
- MCFG_MACHINE_RESET_OVERRIDE(phoenix_state,phoenix)
-
/* video hardware */
/* schematics fairly identical to phoenix, however the interesting
@@ -525,8 +514,6 @@ void phoenix_state::survival(machine_config &config)
GFXDECODE(config, m_gfxdecode, m_palette, gfx_phoenix);
PALETTE(config, m_palette, FUNC(phoenix_state::survival_palette), 256);
- MCFG_VIDEO_START_OVERRIDE(phoenix_state,phoenix)
-
/* sound hardware */
SPEAKER(config, "mono").front_center();