polepos: append, not set, the reset line to the latch

This commit is contained in:
Mike Harris 2020-04-25 10:38:23 -07:00
parent 3988951d34
commit 5c24bfc6a8

View File

@ -905,9 +905,9 @@ void polepos_state::polepos(machine_config &config)
LS259(config, m_latch); // at 8E on polepos
m_latch->q_out_cb<0>().set_inputline(m_maincpu, 0, CLEAR_LINE).invert();
m_latch->q_out_cb<1>().set("51xx", FUNC(namco_51xx_device::reset));
m_latch->q_out_cb<1>().set("52xx", FUNC(namco_52xx_device::reset));
m_latch->q_out_cb<1>().set("53xx", FUNC(namco_53xx_device::reset));
m_latch->q_out_cb<1>().set("54xx", FUNC(namco_54xx_device::reset));
m_latch->q_out_cb<1>().append("52xx", FUNC(namco_52xx_device::reset));
m_latch->q_out_cb<1>().append("53xx", FUNC(namco_53xx_device::reset));
m_latch->q_out_cb<1>().append("54xx", FUNC(namco_54xx_device::reset));
m_latch->q_out_cb<2>().set(m_namco_sound, FUNC(namco_device::sound_enable_w));
m_latch->q_out_cb<2>().set("polepos", FUNC(polepos_sound_device::clson_w));
m_latch->q_out_cb<3>().set(FUNC(polepos_state::gasel_w));