1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-27 18:55:48 +00:00

Minor: ensured immediate line comparison works. But I think my problem might be trying to do this as straight line logic?

This commit is contained in:
Thomas Harte 2017-08-14 19:08:20 -04:00
parent 113da93796
commit 55055c7847

View File

@ -137,7 +137,7 @@ template <class T> class CRTC6845 {
}
character_counter_ = 0;
character_is_visible_ = true;
character_is_visible_ = (registers_[1] != 0);
}
perform_bus_cycle();