5

Is there a way to stop execution each time some memory address is accessed?

triple fault
  • 151
  • 1
  • 2

1 Answers1

4

Yes

For a memory access breakpoint1, just right click the desired address > Breakpoint > Memory, on access:

Code hwbp

The same applies to values in the hex dump:

Data hwbp

1: A breakpoint on access will break whenver the address is read, written or executed. An execution breakpoint will never break on read/write.

Martin
  • 468
  • 3
  • 7