diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-01-08 19:11:56 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-01-08 19:11:56 -0800 |
commit | 882b6ddf738a529c15f45f9d058dc753bc354b50 (patch) | |
tree | 50ad48b019651cb691f4d6e9f2bfbf77b7a349ce /m68k_internal.h | |
parent | 1a8489d67d209986951adb84eef3fc36dbe3b548 (diff) |
Moved translate_m68k_rte and translate_m68k_reset to m68k_core.c
Diffstat (limited to 'm68k_internal.h')
-rw-r--r-- | m68k_internal.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/m68k_internal.h b/m68k_internal.h index a556505..fe77e78 100644 --- a/m68k_internal.h +++ b/m68k_internal.h @@ -31,6 +31,7 @@ void calc_areg_displace(m68k_options *opts, m68k_op_info *op, uint8_t native_reg void calc_index_disp8(m68k_options *opts, m68k_op_info *op, uint8_t native_reg); void calc_areg_index_disp8(m68k_options *opts, m68k_op_info *op, uint8_t native_reg); void nop_fill_or_jmp_next(code_info *code, code_ptr old_end, code_ptr next_inst); +void check_user_mode_swap_ssp_usp(m68k_options *opts); //functions implemented in m68k_core.c int8_t native_reg(m68k_op_info * op, m68k_options * opts); @@ -83,8 +84,6 @@ 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); void translate_m68k_stop(m68k_options *opts, m68kinst *inst); void translate_m68k_move_from_sr(m68k_options *opts, m68kinst *inst, host_ea *src_op, host_ea *dst_op); -void translate_m68k_reset(m68k_options *opts, m68kinst *inst); -void translate_m68k_rte(m68k_options *opts, m68kinst *inst); //flag update bits #define X0 0x0001 |