From 7759fb7e68bdf88952a03eabdb401b194264f1e2 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 9 Oct 2024 11:48:08 -0400 Subject: [PATCH] Add TODO. --- Components/6845/CRTC6845.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Components/6845/CRTC6845.hpp b/Components/6845/CRTC6845.hpp index c85022800..6fb685c7a 100644 --- a/Components/6845/CRTC6845.hpp +++ b/Components/6845/CRTC6845.hpp @@ -262,6 +262,8 @@ template cl } if(character_reset_history_ & 4 && eom_latched_) { + // TODO: I don't believe the "add 1 for interlaced" test here is accurate; others represent the extra scanline as + // additional state, presumably because adjust total might be reprogrammed at any time. const auto adjust_length = layout_.vertical.adjust + (layout_.interlace_mode_ != InterlaceMode::Off && odd_field_ ? 1 : 0); is_in_adjustment_period_ |= adjustment_counter_ != adjust_length; eof_latched_ |= adjustment_counter_ == adjust_length; @@ -315,10 +317,10 @@ template cl // Vertical display enable. if(is_first_scanline_) { line_is_visible_ = true; + odd_field_ = bus_state_.field_count & 1; } else if(line_is_visible_ && row_counter_ == layout_.vertical.displayed) { line_is_visible_ = false; ++bus_state_.field_count; - odd_field_ ^= true; }