From: Maxwell Beck Date: Sun, 29 Dec 2024 01:34:56 +0000 (-0600) Subject: Allow some CPU timing slop X-Git-Url: https://rastertail.net/scm/?a=commitdiff_plain;h=049c4f630b539c9d036b5a253f6e09c4d6556f43;p=pico1541.git Allow some CPU timing slop Still not sure why this is needed now. --- diff --git a/src/pico1541.c b/src/pico1541.c index 266bfd7..3489fee 100644 --- a/src/pico1541.c +++ b/src/pico1541.c @@ -187,7 +187,7 @@ int main() { ts = time_us_32(); uint16_t osc2 = 0xffff; while (!cpu.jammed) { - if (ts < time_us_32()) { + if (ts + 100 < time_us_32()) { break; }