1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

I discovered a further post on this on the STH forums; apparently the Electron simply asserts sync continuously. No breaks.

This commit is contained in:
Thomas Harte 2016-04-11 21:01:09 -04:00
parent e45fe43801
commit a3c2cd880e

View File

@ -699,8 +699,7 @@ inline void Machine::update_display()
{
// wait for the line to complete before signalling
if(final_line == line) return;
_crt->output_blank(9 * crt_cycles_multiplier);
_crt->output_sync(119 * crt_cycles_multiplier);
_crt->output_sync(128 * crt_cycles_multiplier);
_displayOutputPosition += 128;
continue;
}
@ -710,8 +709,7 @@ inline void Machine::update_display()
{
// wait for the line to complete before signalling
if(final_line == line) return;
_crt->output_blank(9 * crt_cycles_multiplier);
_crt->output_sync(55 * crt_cycles_multiplier);
_crt->output_sync(64 * crt_cycles_multiplier);
_crt->output_blank(64 * crt_cycles_multiplier);
_displayOutputPosition += 128;
continue;