| |||
| Home > Setting Breakpoints > About setting breakpoints > Specifying address ranges | |||
Some processors support address ranges for hardware breakpoints, which halt the processor when the PC reaches any address in the specified address range. You specify an address range using either of the following formats:
start_addr..end_addrStart address and an absolute end address, for example:
0x10000..0x1FFFF
start_addr..+lengthStart address and length of the address region, for example:
0x10000..+0x10000
These formats can be used in the various breakpoint dialog boxes available in the GUI, in addition to the CLI commands.
You can also use symbol names, such as macros, function names, and variables as the start address:
mymacro()..+1000
main..+1000
Arr_2_Glob..+64