Debugger: Prevent dummy reads from triggering breakpoints
This commit is contained in:
parent
33ca8cb3f5
commit
52c1d160fe
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ void Debugger::PrivateProcessRamOperation(MemoryOperationType type, uint16_t &ad
|
|||
}
|
||||
}
|
||||
|
||||
if(!breakDone) {
|
||||
if(!breakDone && type != MemoryOperationType::DummyRead) {
|
||||
BreakpointType breakpointType = BreakpointType::Execute;
|
||||
switch(type) {
|
||||
case MemoryOperationType::Read: breakpointType = BreakpointType::ReadRam; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue