radikalb: add output start lamp to Gaelco Radikal Bikers (#13069)

This commit is contained in:
Kabuki Flux 2024-12-11 16:29:30 +01:00 committed by GitHub
parent 3bd3ca7093
commit af7b251b62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 9 deletions

View File

@ -640,13 +640,6 @@ void gaelco3d_state::adsp_tx_callback(offs_t offset, uint32_t data)
*
*************************************/
void gaelco3d_state::radikalb_lamp_w(int state)
{
// Arbitrary data written
logerror("%06X:unknown_127_w = %d\n", m_maincpu->pc(), state);
}
void gaelco3d_state::unknown_137_w(int state)
{
// Only written $00 or $ff
@ -948,7 +941,7 @@ void gaelco3d_state::gaelco3d(machine_config &config)
LS259(config, m_outlatch); // IC2 on top board near edge connector
m_outlatch->q_out_cb<1>().set(FUNC(gaelco3d_state::tms_control3_w));
m_outlatch->q_out_cb<2>().set(FUNC(gaelco3d_state::radikalb_lamp_w));
m_outlatch->q_out_cb<2>().set_output("Start_lamp"); // START LAMP
m_outlatch->q_out_cb<3>().set(FUNC(gaelco3d_state::unknown_137_w));
m_outlatch->q_out_cb<4>().set(m_serial, FUNC(gaelco_serial_device::irq_enable));
m_outlatch->q_out_cb<5>().set(FUNC(gaelco3d_state::analog_port_clock_w));

View File

@ -155,7 +155,6 @@ private:
void tms_control3_w(int state);
void adsp_control_w(offs_t offset, uint16_t data);
void adsp_rombank_w(offs_t offset, uint16_t data);
void radikalb_lamp_w(int state);
void unknown_137_w(int state);
void unknown_13a_w(int state);
void gaelco3d_render_w(uint32_t data);