From a1f73f4ae60d0d2cff6e8619417c15c97460239b Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Thu, 29 Oct 2015 19:06:06 -0700 Subject: Implement TRAPV --- m68k_core.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'm68k_core.c') 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) -- cgit v1.2.3