summaryrefslogtreecommitdiff
path: root/z80_to_x86.h
diff options
context:
space:
mode:
authorMike Pavone <pavone@retrodev.com>2013-05-31 19:43:13 -0700
committerMike Pavone <pavone@retrodev.com>2013-05-31 19:43:13 -0700
commit9a7ec29919cdcc7ca97c991053fe74de8f6081f3 (patch)
tree8059db7f79dd30dc3c7b4dea57e58eb87b43e50e /z80_to_x86.h
parent6255ef8167f6952e53b65f0d0c50dcffe49e0d47 (diff)
Partial implementation of Z80 debugger
Diffstat (limited to 'z80_to_x86.h')
-rw-r--r--z80_to_x86.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/z80_to_x86.h b/z80_to_x86.h
index 9c70516..5bcc3a8 100644
--- a/z80_to_x86.h
+++ b/z80_to_x86.h
@@ -59,6 +59,8 @@ uint8_t * z80_get_native_address(z80_context * context, uint32_t address);
z80_context * z80_handle_code_write(uint32_t address, z80_context * context);
void z80_run(z80_context * context);
void z80_reset(z80_context * context);
+void zinsert_breakpoint(z80_context * context, uint16_t address, uint8_t * bp_handler);
+void zremove_breakpoint(z80_context * context, uint16_t address);
#endif //Z80_TO_X86_H_