diff z80_to_x86.h @ 366:836585d389b8

Partial implementation of Z80 debugger
author Mike Pavone <pavone@retrodev.com>
date Fri, 31 May 2013 19:43:13 -0700
parents 14a937097c2b
children 7e8e179116af
line wrap: on
line diff
--- a/z80_to_x86.h	Wed May 29 21:21:14 2013 -0700
+++ b/z80_to_x86.h	Fri May 31 19:43:13 2013 -0700
@@ -59,6 +59,8 @@
 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_