mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Remaining fixes
This commit is contained in:
parent
b78251b9ca
commit
01c7762eda
3 changed files with 3 additions and 6 deletions
|
@ -25,8 +25,8 @@ public:
|
|||
|
||||
// input lines
|
||||
template <unsigned Bit> DECLARE_WRITE_LINE_MEMBER(in_w) { static_assert(Bit < 32, "invalid bit"); m_update_state.synchronize((Bit << 1) | (state ? 1U : 0U)); }
|
||||
template <unsigned Bit> void in_set(u8 data) { in_w<Bit>(1); }
|
||||
template <unsigned Bit> void in_clear(u8 data) { in_w<Bit>(0); }
|
||||
template <unsigned Bit> void in_set(u8 data = 0) { in_w<Bit>(1); }
|
||||
template <unsigned Bit> void in_clear(u8 data = 0) { in_w<Bit>(0); }
|
||||
|
||||
protected:
|
||||
// constructor/destructor
|
||||
|
|
|
@ -69,9 +69,6 @@ void turbo_state::sound_a_w(uint8_t data)
|
|||
|
||||
// /CRASH.L: channel 3
|
||||
if ((diff & 0x80) && !(data & 0x80)) m_samples->start(3, 5);
|
||||
|
||||
/* update any samples */
|
||||
turbo_update_samples();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -4303,7 +4303,7 @@ MACHINE_START_MEMBER( mo6_state, mo6 )
|
|||
to9_palette_init();
|
||||
to7_modem_init();
|
||||
to7_midi_init();
|
||||
m_mo5_periodic_timer = timer_alloc(*this, FUNC(thomson_state::mo5_periodic_cb));
|
||||
m_mo5_periodic_timer = timer_alloc(*this, FUNC(mo6_state::mo5_periodic_cb));
|
||||
|
||||
/* memory */
|
||||
m_thom_cart_bank = 0;
|
||||
|
|
Loading…
Reference in a new issue