From 0691811588ac8756fea7d211343ccdc49b74d1d1 Mon Sep 17 00:00:00 2001 From: Michael Zapf Date: Sat, 28 Apr 2018 00:32:55 +0200 Subject: [PATCH] tutor: Turn off auto wait states, fixes cassette loading. --- src/mame/drivers/tutor.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/tutor.cpp b/src/mame/drivers/tutor.cpp index db5581b2d37..14b6c168b7f 100644 --- a/src/mame/drivers/tutor.cpp +++ b/src/mame/drivers/tutor.cpp @@ -270,9 +270,10 @@ void tutor_state::machine_reset() m_tape_interrupt_enable = 0; m_centronics_busy = 0; - // Enable auto wait states by lowering READY during reset - m_maincpu->ready_line(CLEAR_LINE); + // Disable auto wait states; with enabled wait states, cassette loading fails + m_maincpu->ready_line(ASSERT_LINE); m_maincpu->reset_line(ASSERT_LINE); + m_maincpu->hold_line(CLEAR_LINE); } /*