summaryrefslogtreecommitdiff
path: root/m68k_core.c
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2018-05-17 00:43:16 -0700
committerMichael Pavone <pavone@retrodev.com>2018-05-17 00:43:16 -0700
commitbc8e1aacd0fd42e46e7c71d5fa3c5fd160a1cc9c (patch)
tree25e295174945e774e1feb4be4c01c691d96d8294 /m68k_core.c
parent558e58d159eaa027e148f70347bbb6b8138a0781 (diff)
Fix instruction timing for a number of instructions with only a single operand
Diffstat (limited to 'm68k_core.c')
-rw-r--r--m68k_core.c2
1 files changed, 1 insertions, 1 deletions
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),