From 84ee683ad33233bde86285b924d4bbc5f6e4b282 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 5 Dec 2023 23:00:21 -0500 Subject: [PATCH] Remove redundant, false comment. --- Machines/PCCompatible/MDA.hpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Machines/PCCompatible/MDA.hpp b/Machines/PCCompatible/MDA.hpp index b7d35fa7d..81ea12458 100644 --- a/Machines/PCCompatible/MDA.hpp +++ b/Machines/PCCompatible/MDA.hpp @@ -32,9 +32,6 @@ class MDA { // MDA is actually clocked at 16.257 MHz; which is treated internally as 1,806,333.333333333333333... Hz // // The GCD of those two numbers is... 2. Oh well. - - // I _think_ the MDA's CRTC is clocked at 14/9ths the PIT clock. - // Do that conversion here. full_clock_ += 8'128'500 * cycles.as(); crtc_.run_for(Cycles(full_clock_ / (596'591 * 9))); full_clock_ %= (596'591 * 9);