Range l – Freescale Semiconductor Microcontrollers User Manual

Page 835

Advertising
background image

Debugger Engine Commands

Debugger Commands

835

Microcontrollers Debugger Manual

Example:

WAIT 100

T

...

Pauses for 10 seconds before executing the T Trace instruction.

WB

The WB command sets a specified block of memory to a specified list of byte values.
When the range is wider than the list of byte values, the list of byte values is repeated as
many times as necessary to fill the memory block. When the range is not an integer, a
multiple of the length of the list and the last copy of the list is truncated accordingly. This
command is identical to the memory set (

MS

) command.

Usage

WB range list

range: is an address range constant that defines the block of memory to be set to
the values of the bytes in the list.

list: is a list of byte values to be stored in the block of memory.

Alias

MS

Components

Debugger engine.

Example

in>WB 0x0205..0x0220 0xFF

This command fills up the memory range 0x0205..0x0220 with the 0xFF byte
value.

Advertising