mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-22 11:29:20 +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:
parent
e45fe43801
commit
a3c2cd880e
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user