summaryrefslogtreecommitdiff
path: root/m68k_core.c
diff options
context:
space:
mode:
Diffstat (limited to 'm68k_core.c')
-rw-r--r--m68k_core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/m68k_core.c b/m68k_core.c
index 490fcec..02463c9 100644
--- a/m68k_core.c
+++ b/m68k_core.c
@@ -790,6 +790,7 @@ impl_info m68k_impls[] = {
//traps
OP_IMPL(M68K_CHK, translate_m68k_chk),
RAW_IMPL(M68K_TRAP, translate_m68k_trap),
+ RAW_IMPL(M68K_TRAPV, translate_m68k_trapv),
RAW_IMPL(M68K_ILLEGAL, translate_m68k_illegal),
RAW_IMPL(M68K_INVALID, translate_m68k_invalid),
@@ -797,9 +798,6 @@ impl_info m68k_impls[] = {
RAW_IMPL(M68K_NOP, translate_m68k_nop),
RAW_IMPL(M68K_RESET, translate_m68k_reset),
RAW_IMPL(M68K_TAS, translate_m68k_tas),
-
- //currently unimplemented
- //M68K_TRAPV
};
void translate_m68k(m68k_options * opts, m68kinst * inst)