From 6747d768643f2b3709b9f0e2810357eea938a127 Mon Sep 17 00:00:00 2001 From: Michael Zapf Date: Fri, 24 Feb 2017 01:09:08 +0100 Subject: ti99: Fix GROM issues with 99/4; clock turned off too early --- src/devices/machine/tmc0430.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/tmc0430.h b/src/devices/machine/tmc0430.h index a8efe012bdc..f0ae99b8d06 100644 --- a/src/devices/machine/tmc0430.h +++ b/src/devices/machine/tmc0430.h @@ -54,7 +54,7 @@ public: int debug_get_address(); // Allow for checking the state of the GROM so we can turn off the clock - bool idle() { return m_phase == 0; } + bool idle() { return (m_phase == 0 && m_current_clock_level==CLEAR_LINE); } protected: void device_start(void) override; -- cgit v1.2.3