Freescale Semiconductor Microcontrollers User Manual

Page 775

Advertising
background image

Debugger Engine Commands

Debugger Commands

775

Microcontrollers Debugger Manual

DL

The DL command displays the hexadecimal values of the longwords in a specified range
of memory. The command displays one or more lines, depending on the address or range
specified. Each line shows the address of the first longword displayed in the line, followed
by the number of specified hexadecimal longword values.

When a size is specified in the range, this size represents the number of longwords that
display in the command line window.

This command can be stopped by pressing the Esc key.

NOTE

Open the Command Line component before executing this command to see the
dumped code.

Usage

DL [address|

range]

When range is omitted, the first longword displayed is taken from the address
following the last longword displayed by the most recent DB, DW, or DL
command, or from address 0x0000 (for the first

DB

,

DW

,

DL

command of a

session).

Components

Debugger engine.

Example:

in>DL 0x8000..0x8007

8000: FE8045FD 80432710

The content of the memory range starting at 0x8000 and ending at 0x8007 is
displayed as longword (four bytes) values.

in>DL 0x8000,2

8000: FE8045FD 80432710

The content of two longwords starting at 0x8000 is displayed as longword values
(four bytes).

Memory longwords are displayed in the Command Line component window.

Advertising