1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-12-02 02:49:28 +00:00

Reverts previous unevidenced change.

This commit is contained in:
Thomas Harte 2017-08-26 22:58:16 -04:00
parent 487fe83dca
commit bdda701207

View File

@ -171,10 +171,6 @@ template <class T> class CRTC6845 {
} }
} else { } else {
line_counter_ = (line_counter_ + 1) & 0x7f; line_counter_ = (line_counter_ + 1) & 0x7f;
}
} else {
bus_state_.row_address = (bus_state_.row_address + 1) & 0x1f;
}
// check for start of vertical sync // check for start of vertical sync
if(line_counter_ == registers_[7]) { if(line_counter_ == registers_[7]) {
@ -187,6 +183,10 @@ template <class T> class CRTC6845 {
line_is_visible_ = false; line_is_visible_ = false;
} }
} }
} else {
bus_state_.row_address = (bus_state_.row_address + 1) & 0x1f;
}
}
bus_state_.refresh_address = line_address_; bus_state_.refresh_address = line_address_;
character_counter_ = 0; character_counter_ = 0;