From e01cf375cbae14cd9f881e54915379f7fe3b156c Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 12 Sep 2017 01:26:49 +0300 Subject: [PATCH] musashi: run same amount of cycles as other cores for consistency --- cpu/musashi/m68kcpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/musashi/m68kcpu.c b/cpu/musashi/m68kcpu.c index 72bb217..38469f3 100644 --- a/cpu/musashi/m68kcpu.c +++ b/cpu/musashi/m68kcpu.c @@ -808,7 +808,7 @@ int m68k_execute(int num_cycles) // notaz m68ki_trace_t1(); - while(GET_CYCLES() >= 0) + while(GET_CYCLES() > 0) // do { /* Set tracing accodring to T1. (T0 is done inside instruction) */ -- 2.39.2