1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-23 03:32:32 +00:00

This now proceeds to an ostensibly working basic prompt. Colours are wrong, 6560 is probably very wrong, 6522 is still absent. Hence no cursor.

This commit is contained in:
Thomas Harte 2016-06-06 20:33:06 -04:00
parent c7c55528e2
commit ca23e2e10a

View File

@ -133,7 +133,7 @@ uint16_t MOS6560::get_address()
_row_counter++;
if(_row_counter == _number_of_rows*8) _row_counter = -1;
}
else if(_vertical_counter >= _first_row_location * 2)
else if(_vertical_counter == _first_row_location * 2)
{
_video_matrix_line_address_counter = _video_matrix_start_address;
_row_counter = 0;