Mercurial > repos > blastem
comparison debug.h @ 2676:7e86ec94c899
Implement breakpoints in new 68K core
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sat, 15 Mar 2025 23:15:05 -0700 |
parents | 54ac5fe14cf9 |
children |
comparison
equal
deleted
inserted
replaced
2675:dbff641a33df | 2676:7e86ec94c899 |
---|---|
217 debug_root *find_z80_root(z80_context *context); | 217 debug_root *find_z80_root(z80_context *context); |
218 bp_def ** find_breakpoint(bp_def ** cur, uint32_t address, uint8_t type); | 218 bp_def ** find_breakpoint(bp_def ** cur, uint32_t address, uint8_t type); |
219 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index); | 219 bp_def ** find_breakpoint_idx(bp_def ** cur, uint32_t index); |
220 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param); | 220 void add_display(disp_def ** head, uint32_t *index, char format_char, char * param); |
221 void remove_display(disp_def ** head, uint32_t index); | 221 void remove_display(disp_def ** head, uint32_t index); |
222 void debugger(m68k_context * context, uint32_t address); | 222 void debugger(void * vcontext, uint32_t address); |
223 z80_context * zdebugger(z80_context * context, uint16_t address); | 223 z80_context * zdebugger(z80_context * context, uint16_t address); |
224 void print_m68k_help(); | 224 void print_m68k_help(); |
225 void print_z80_help(); | 225 void print_z80_help(); |
226 | 226 |
227 #endif //DEBUG_H_ | 227 #endif //DEBUG_H_ |