summaryrefslogtreecommitdiff
path: root/m68k_internal.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2017-05-19 20:27:35 -0700
committerMichael Pavone <pavone@retrodev.com>2017-05-19 20:27:35 -0700
commitb3f9c8727f9890c1a3e3a9f64e86d58d5701f58c (patch)
tree3411d25ab9bdd532b4843208ed88087c60e3466d /m68k_internal.h
parentec6165fd23f9994d2db087c6f0dc09afbebf5a73 (diff)
Fix to M68K interrupt latency for most instructions. Still needs some work for RAW_IMPL instructions besides move
Diffstat (limited to 'm68k_internal.h')
-rw-r--r--m68k_internal.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/m68k_internal.h b/m68k_internal.h
index fbe26ce..4533de1 100644
--- a/m68k_internal.h
+++ b/m68k_internal.h
@@ -36,13 +36,14 @@ void m68k_set_last_prefetch(m68k_options *opts, uint32_t address);
void translate_m68k_odd(m68k_options *opts, m68kinst *inst);
void m68k_trap_if_not_supervisor(m68k_options *opts, m68kinst *inst);
void m68k_breakpoint_patch(m68k_context *context, uint32_t address, m68k_debug_handler bp_handler, code_ptr native_addr);
+void m68k_check_cycles_int_latch(m68k_options *opts);
+uint8_t translate_m68k_op(m68kinst * inst, host_ea * ea, m68k_options * opts, uint8_t dst);
//functions implemented in m68k_core.c
int8_t native_reg(m68k_op_info * op, m68k_options * opts);
size_t dreg_offset(uint8_t reg);
size_t areg_offset(uint8_t reg);
size_t reg_offset(m68k_op_info *op);
-void translate_m68k_op(m68kinst * inst, host_ea * ea, m68k_options * opts, uint8_t dst);
void m68k_read_size(m68k_options *opts, uint8_t size);
void m68k_write_size(m68k_options *opts, uint8_t size, uint8_t lowfirst);
void m68k_save_result(m68kinst * inst, m68k_options * opts);