From 9899c60b201da4f7a9dd464cec145cdd8b6227f4 Mon Sep 17 00:00:00 2001 From: giuliof Date: Fri, 14 Feb 2025 22:08:25 +0100 Subject: [PATCH] feat: start the execution when the emulator starts --- src/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu.c b/src/cpu.c index a36c288..785e9a9 100644 --- a/src/cpu.c +++ b/src/cpu.c @@ -15,7 +15,7 @@ #define CPU_PAUSE_PERIOD 20000 // [us] 20 ms => 50 Hz static Z80 cpu; -static bool pause = true; +static bool pause = false; static unsigned long int cycles = 0; static us_time_t last_update = 0; static us_time_t update_interval = CPU_PAUSE_PERIOD;