| |||
| Home > RealView Debugger Commands > Command syntax definition > Specifying address ranges | |||
Many commands 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:
memmap,define 0x10000..0x20000
start_addr..+lengthStart address and length of the address region, for example:
memmap,define 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:
printdsm main..+1000
fill Arr_2_Glob..+64=0xFF