From 73c8157197137820ca0111f5a3d58c6526bbec0a Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 20 Apr 2021 22:26:43 -0400 Subject: [PATCH] Retain 6850 time tracking at all times. --- Components/6850/6850.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Components/6850/6850.cpp b/Components/6850/6850.cpp index 100f82c8d..561a1caac 100644 --- a/Components/6850/6850.cpp +++ b/Components/6850/6850.cpp @@ -129,8 +129,8 @@ ClockingHint::Preference ACIA::preferred_clocking() const { // because it's unclear when the interrupt might come. if(bits_incoming_ && receive_interrupt_enabled_) return ClockingHint::Preference::RealTime; - // No clocking required then. - return ClockingHint::Preference::None; + // Real-time clocking not required then. + return ClockingHint::Preference::JustInTime; } bool ACIA::get_interrupt_line() const {