summaryrefslogtreecommitdiff
path: root/m68k_to_x86.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2014-03-02 14:41:43 -0800
committerMichael Pavone <pavone@retrodev.com>2014-03-02 14:41:43 -0800
commit21c7f3bc1537b360433c3149488c3077c7639b9b (patch)
treeb40f6e5d6eacbea8aaefbf97c7516c17976b9007 /m68k_to_x86.h
parent2cd6ec514cf4747c299c50b29bc8c22cafe2eb43 (diff)
Add backtrace (bt) command to 68K debugger
Diffstat (limited to 'm68k_to_x86.h')
-rw-r--r--m68k_to_x86.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/m68k_to_x86.h b/m68k_to_x86.h
index c4fbf22..3b8c619 100644
--- a/m68k_to_x86.h
+++ b/m68k_to_x86.h
@@ -73,6 +73,7 @@ void m68k_reset(m68k_context * context);
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);
#endif //M68K_TO_X86_H_