From 0b1ecceb3803e7644a1dc1dbc09399dfdf7e59a0 Mon Sep 17 00:00:00 2001 From: Jorj Bauer Date: Mon, 11 Jan 2021 13:59:25 -0500 Subject: [PATCH] fix for returning from BIOS hanging --- sdl/aiie.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdl/aiie.cpp b/sdl/aiie.cpp index 97648e7..5899492 100644 --- a/sdl/aiie.cpp +++ b/sdl/aiie.cpp @@ -115,6 +115,10 @@ static struct timespec runBIOS(struct timespec now) printf("BIOS loop has exited\n"); g_biosInterrupt = false; // that's all she wrote! } + + // Reset timers! + cpuClockInitialized = false; + g_cpu->cycles = 0; return diff; }