diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-04-26 00:07:15 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-04-26 00:07:15 -0700 |
commit | 042768acd31ac2a59049db55e31b647c2eb51818 (patch) | |
tree | e8f9eb1e0b9098c558aa9ff0f7bee7ace8c6fc27 /m68k_internal.h | |
parent | f648307598ab5c06261ef7bd9b27308cda8f1a4e (diff) |
Implement illegal instruction trap
Diffstat (limited to 'm68k_internal.h')
-rw-r--r-- | m68k_internal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/m68k_internal.h b/m68k_internal.h index 8b891bd..dbfc0df 100644 --- a/m68k_internal.h +++ b/m68k_internal.h @@ -66,7 +66,6 @@ void translate_m68k_move(m68k_options * opts, m68kinst * inst); void translate_m68k_movep(m68k_options * opts, m68kinst * inst); void translate_m68k_arith(m68k_options *opts, m68kinst * inst, uint32_t flag_mask, host_ea *src_op, host_ea *dst_op); void translate_m68k_unary(m68k_options *opts, m68kinst *inst, uint32_t flag_mask, host_ea *dst_op); -void translate_m68k_invalid(m68k_options *opts, m68kinst *inst); void translate_m68k_cmp(m68k_options * opts, m68kinst * inst); void translate_m68k_tas(m68k_options * opts, m68kinst * inst); void translate_m68k_clr(m68k_options * opts, m68kinst * inst); @@ -82,7 +81,6 @@ void translate_m68k_exg(m68k_options *opts, m68kinst *inst, host_ea *src_op, hos void translate_m68k_mul(m68k_options *opts, m68kinst *inst, host_ea *src_op, host_ea *dst_op); void translate_m68k_negx(m68k_options *opts, m68kinst *inst, host_ea *src_op, host_ea *dst_op); void translate_m68k_rot(m68k_options *opts, m68kinst *inst, host_ea *src_op, host_ea *dst_op); -void translate_m68k_illegal(m68k_options *opts, m68kinst *inst); void translate_m68k_andi_ori_ccr_sr(m68k_options *opts, m68kinst *inst); void translate_m68k_eori_ccr_sr(m68k_options *opts, m68kinst *inst); void translate_m68k_move_ccr_sr(m68k_options *opts, m68kinst *inst, host_ea *src_op, host_ea *dst_op); |