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:
Paul-Arnold 2022-05-16 12:35:51 +01:00 committed by GitHub
parent afb0469e48
commit a450478483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)