Remaining fixes

This commit is contained in:
Aaron Giles 2021-08-14 01:10:56 -07:00
parent b78251b9ca
commit 01c7762eda
3 changed files with 3 additions and 6 deletions

View file

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

View file

@ -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();
}

View file

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