diff m68k_core.c @ 839:4556818b6847

Implement TRAPV
author Michael Pavone <pavone@retrodev.com>
date Thu, 29 Oct 2015 19:06:06 -0700
parents f2cd380adebe
children 9f149f0e98b7
line wrap: on
line diff
--- a/m68k_core.c	Thu Oct 29 01:06:48 2015 -0700
+++ b/m68k_core.c	Thu Oct 29 19:06:06 2015 -0700
@@ -790,6 +790,7 @@
 	//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 @@
 	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)