diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-10-29 19:06:06 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-10-29 19:06:06 -0700 |
commit | a1f73f4ae60d0d2cff6e8619417c15c97460239b (patch) | |
tree | 1f2c087036ad375e6cf75b735936c17ddd4df97d /m68k_core.c | |
parent | 3a8f89cb47c0715d091dde6e317cebf9a4796778 (diff) |
Implement TRAPV
Diffstat (limited to 'm68k_core.c')
-rw-r--r-- | m68k_core.c | 4 |
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) |