Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading