Skip to content

Commit 9899c60

Browse files
committed
feat: start the execution when the emulator starts
1 parent 26cc53d commit 9899c60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#define CPU_PAUSE_PERIOD 20000 // [us] 20 ms => 50 Hz
1616

1717
static Z80 cpu;
18-
static bool pause = true;
18+
static bool pause = false;
1919
static unsigned long int cycles = 0;
2020
static us_time_t last_update = 0;
2121
static us_time_t update_interval = CPU_PAUSE_PERIOD;

0 commit comments

Comments
 (0)