diff options
author | 2019-09-20 00:28:19 +1000 | |
---|---|---|
committer | 2019-09-20 00:28:19 +1000 | |
commit | dac7094f3431b8f933497b0c7693e6baeb1bb75c (patch) | |
tree | 1c3dc049110c54d23dc31a1e6c1e8b11fd24e299 /src/mame/drivers/x1twin.cpp | |
parent | cc25024f791747fa17c1f06bd81c482a86aac91b (diff) |
(nw) misc cleanup:
* get rid of most assert_always
* get rid of a few MCFG_*_OVERRIDE
Diffstat (limited to 'src/mame/drivers/x1twin.cpp')
-rw-r--r-- | src/mame/drivers/x1twin.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mame/drivers/x1twin.cpp b/src/mame/drivers/x1twin.cpp index 056201271c3..b0a07189520 100644 --- a/src/mame/drivers/x1twin.cpp +++ b/src/mame/drivers/x1twin.cpp @@ -436,7 +436,6 @@ void x1twin_state::x1twin(machine_config &config) ppi.out_pb_callback().set(FUNC(x1_state::x1_portb_w)); ppi.out_pc_callback().set(FUNC(x1_state::x1_portc_w)); - MCFG_MACHINE_START_OVERRIDE(x1twin_state,x1) MCFG_MACHINE_RESET_OVERRIDE(x1twin_state,x1) #if 0 @@ -475,8 +474,6 @@ void x1twin_state::x1twin(machine_config &config) GFXDECODE(config, m_gfxdecode, m_palette, gfx_x1); - MCFG_VIDEO_START_OVERRIDE(x1twin_state,x1) - MB8877(config, m_fdc, MAIN_CLOCK / 16); // TODO: guesswork, try to implicitly start the motor m_fdc->hld_wr_callback().set(FUNC(x1_state::hdl_w)); |