1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-06 01:28:57 +00:00

Tested and trimmed delay on typing if resetting.

This commit is contained in:
Thomas Harte 2016-06-19 17:27:23 -04:00
parent 05cb47709e
commit 6dd8ea67c9

View File

@ -1058,7 +1058,7 @@ inline void Tape::run_for_cycles(unsigned int number_of_cycles)
int Machine::get_typer_delay()
{
return get_reset_line() ? 4*625*25*128 : 0; // wait four seconds if resetting
return get_reset_line() ? 625*25*128 : 0; // wait one second if resetting
}
int Machine::get_typer_frequency()