mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-23 03:29:04 +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
|
// wait for the line to complete before signalling
|
||||||
if(final_line == line) return;
|
if(final_line == line) return;
|
||||||
_crt->output_blank(9 * crt_cycles_multiplier);
|
_crt->output_sync(128 * crt_cycles_multiplier);
|
||||||
_crt->output_sync(119 * crt_cycles_multiplier);
|
|
||||||
_displayOutputPosition += 128;
|
_displayOutputPosition += 128;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -710,8 +709,7 @@ inline void Machine::update_display()
|
|||||||
{
|
{
|
||||||
// wait for the line to complete before signalling
|
// wait for the line to complete before signalling
|
||||||
if(final_line == line) return;
|
if(final_line == line) return;
|
||||||
_crt->output_blank(9 * crt_cycles_multiplier);
|
_crt->output_sync(64 * crt_cycles_multiplier);
|
||||||
_crt->output_sync(55 * crt_cycles_multiplier);
|
|
||||||
_crt->output_blank(64 * crt_cycles_multiplier);
|
_crt->output_blank(64 * crt_cycles_multiplier);
|
||||||
_displayOutputPosition += 128;
|
_displayOutputPosition += 128;
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user