mirror of
https://github.com/holub/mame
synced 2025-06-06 04:43:45 +03:00
Fix interface to upd7759 sounds (#9769)
Interface to upd7759 was using start and reset inputs when should've been using mode and reset.
This commit is contained in:
parent
afb0469e48
commit
a450478483
@ -2603,9 +2603,8 @@ void bfcobjam_state::genio_w( uint8_t data )
|
||||
}
|
||||
|
||||
//bits 1 and 2 are for upd7759
|
||||
m_upd7759_int->md_w(0);
|
||||
m_upd7759_int->md_w(!BIT(data,1));
|
||||
m_upd7759_int->reset_w(!BIT(data,2));
|
||||
m_upd7759_int->start_w(BIT(data,1));
|
||||
}
|
||||
|
||||
void bfcobjam_state::upd7759_w(uint8_t data)
|
||||
|
Loading…
Reference in New Issue
Block a user