From 48751486170cbe4da41f88b2cf5c7eee895cc51d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 5 Jan 2023 14:22:51 -0500 Subject: [PATCH] Fill in Mega Drive numbers. --- Components/9918/9918.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Components/9918/9918.hpp b/Components/9918/9918.hpp index 21c7b5608..a3a80ea66 100644 --- a/Components/9918/9918.hpp +++ b/Components/9918/9918.hpp @@ -69,10 +69,10 @@ template class TMS9918: private Base { /*! Gets the current scan status. */ Outputs::Display::ScanStatus get_scaled_scan_status() const; - /*! Sets the type of display the CRT will request. */ + /*! Sets the type of CRT display. */ void set_display_type(Outputs::Display::DisplayType); - /*! Gets the type of display the CRT will request. */ + /*! Gets the type of CRT display. */ Outputs::Display::DisplayType get_display_type() const; /*! @@ -82,7 +82,8 @@ template class TMS9918: private Base { * the input clock rate should be 3579545 Hz, the NTSC colour clock rate. For the Mega Drive: - * the input clock rate should be [TODO]. + * the input clock rate should be around 7.6MHz; 15/7ths of the NTSC colour + clock rate for NTSC output and 12/7ths of the PAL colour clock rate for PAL output. */ void run_for(const HalfCycles cycles);