Expand conditional breakpoints to memory breakpoints

This commit is contained in:
TryTwo
2022-09-02 02:57:30 -07:00
parent 6abcaadd5a
commit a17fbe7c65
9 changed files with 88 additions and 49 deletions

View File

@ -23,9 +23,9 @@ public:
void AddBP(u32 addr);
void AddBP(u32 addr, bool temp, bool break_on_hit, bool log_on_hit, const QString& condition);
void AddAddressMBP(u32 addr, bool on_read = true, bool on_write = true, bool do_log = true,
bool do_break = true);
bool do_break = true, const QString& condition = {});
void AddRangedMBP(u32 from, u32 to, bool do_read = true, bool do_write = true, bool do_log = true,
bool do_break = true);
bool do_break = true, const QString& condition = {});
void UpdateButtonsEnabled();
void Update();