summaryrefslogtreecommitdiff
path: root/m68k_core.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2016-04-24 21:23:28 -0700
committerMichael Pavone <pavone@retrodev.com>2016-04-24 21:23:28 -0700
commitf648307598ab5c06261ef7bd9b27308cda8f1a4e (patch)
tree3993de1c2d8d12162bb842b7944f7c0935e1d6fd /m68k_core.h
parent41bdfca723fe7ba2dde28607cdf57f3da8f39445 (diff)
Fix interrupt latency from STOP instruction status reg changes. Fix modified code patching when non-standard aliases are used. This fixes the demo MDEM's First
Diffstat (limited to 'm68k_core.h')
-rw-r--r--m68k_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/m68k_core.h b/m68k_core.h
index 7aeb3f3..cc9ca24 100644
--- a/m68k_core.h
+++ b/m68k_core.h
@@ -79,7 +79,7 @@ void m68k_options_free(m68k_options *opts);
void insert_breakpoint(m68k_context * context, uint32_t address, uint8_t * bp_handler);
void remove_breakpoint(m68k_context * context, uint32_t address);
m68k_context * m68k_handle_code_write(uint32_t address, m68k_context * context);
-uint32_t get_instruction_start(native_map_slot * native_code_map, uint32_t address);
+uint32_t get_instruction_start(m68k_options *opts, native_map_slot * native_code_map, uint32_t address);
#endif //M68K_CORE_H_