From bc8e1aacd0fd42e46e7c71d5fa3c5fd160a1cc9c Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Thu, 17 May 2018 00:43:16 -0700 Subject: Fix instruction timing for a number of instructions with only a single operand --- m68k_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'm68k_core.c') diff --git a/m68k_core.c b/m68k_core.c index db0e056..eee407a 100644 --- a/m68k_core.c +++ b/m68k_core.c @@ -902,7 +902,7 @@ static impl_info m68k_impls[] = { RAW_IMPL(M68K_MOVE_USP, translate_m68k_move_usp), RAW_IMPL(M68K_LEA, translate_m68k_lea_pea), RAW_IMPL(M68K_PEA, translate_m68k_lea_pea), - RAW_IMPL(M68K_CLR, translate_m68k_clr), + UNARY_IMPL(M68K_CLR, N0|V0|C0|Z1), OP_IMPL(M68K_EXG, translate_m68k_exg), RAW_IMPL(M68K_SCC, translate_m68k_scc), -- cgit v1.2.3