mirror of
https://github.com/holub/mame
synced 2025-07-03 00:56:03 +03:00
polepos: append, not set, the reset line to the latch
This commit is contained in:
parent
3988951d34
commit
5c24bfc6a8
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user