1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-04 13:31:26 +00:00

Simplified logic slightly, avoiding repetition.

This commit is contained in:
Thomas Harte 2017-08-10 11:48:37 -04:00
parent be8e7a4144
commit 02d792c003

View File

@ -58,15 +58,14 @@ template <class T> class CRTC6845 {
if(hsync_down_counter_) bus_state_.hsync = true;
}
// update refresh address
if(character_is_visible_) {
bus_state_.refresh_address++;
}
// check for end of visible characters
if(character_counter_ == registers_[1]) {
bus_state_.refresh_address++;
character_is_visible_ = false;
} else {
// update refresh address
if(character_is_visible_) {
bus_state_.refresh_address++;
}
}
// check for end-of-line