comparison debug.h @ 2182:2d7f8195be3b

Add support for conditional breakpoints
author Michael Pavone <pavone@retrodev.com>
date Sat, 13 Aug 2022 22:51:31 -0700
parents f6d5bde4d07f
children e17d99c96c89
comparison
equal deleted inserted replaced
2181:0c723b8b637c 2182:2d7f8195be3b
88 } parsed_command; 88 } parsed_command;
89 89
90 typedef struct bp_def { 90 typedef struct bp_def {
91 struct bp_def *next; 91 struct bp_def *next;
92 parsed_command *commands; 92 parsed_command *commands;
93 expr *condition;
93 uint32_t num_commands; 94 uint32_t num_commands;
94 uint32_t address; 95 uint32_t address;
95 uint32_t index; 96 uint32_t index;
96 } bp_def; 97 } bp_def;
97 98