| |||
| Home > Working with Breakpoints > Breakpoints in RealView Debugger > Specifying address ranges | |||
Hardware breakpoints enable you to specify a range of addresses. You specify an address range using either of the following formats:
start_addr..end_addrStart address and an absolute end address, for example:
0x10000..0x20000
start_addr..+lengthStart address and length of the address region, for example:
0x10000..+0x10000
In both cases, the start and end values are inclusive.
You can also use symbol names, such as function names, as the start address. For example:
main..+1000 Arr_2_Glob..+64