summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michael Zapf <Michael.Zapf@mizapf.de>2017-02-24 01:09:08 +0100
committer Michael Zapf <Michael.Zapf@mizapf.de>2017-02-24 01:10:47 +0100
commit6747d768643f2b3709b9f0e2810357eea938a127 (patch)
tree2140220e3f8c90a069c9c76e0f37b39abb198df9
parent86cd526e493ee23fe7c7bb2f251a9432834a912a (diff)
ti99: Fix GROM issues with 99/4; clock turned off too early
-rw-r--r--src/devices/machine/tmc0430.h2
1 files changed, 1 insertions, 1 deletions
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;