diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-01-13 13:01:13 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-01-13 13:01:13 -0800 |
commit | e8f10d79de7c5c3cb59b73b2e0eb326fd4e1085e (patch) | |
tree | c4183d6e2f889159e32e735f6a70078b3503958d /m68k_to_x86.h | |
parent | c9f76989d03409e5323871979d34053fc771c86d (diff) |
Fix a bunch of bugs in the CPU core, add a 68K debugger
Diffstat (limited to 'm68k_to_x86.h')
-rw-r--r-- | m68k_to_x86.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/m68k_to_x86.h b/m68k_to_x86.h index 24e6774..e558ee5 100644 --- a/m68k_to_x86.h +++ b/m68k_to_x86.h @@ -54,4 +54,6 @@ void start_68k_context(m68k_context * context, uint32_t address); void init_x86_68k_opts(x86_68k_options * opts); void init_68k_context(m68k_context * context, native_map_slot * native_code_map, void * opts); 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); |