List bp, Loadmem, Go list bp loadmem – Zilog Z8F0130 User Manual

Page 528

Advertising
background image

Appendix D. Using the Command Processor

UM013037-1212

504

Zilog Developer Studio II – Z8 Encore!
User Manual

If

STARTADDRESS

and

ENDADDRESS

are not specified, all of the memory contents of a

specified space are filled.

For example:

fillmem SPACE="ROM" VALUE="AA"

fillmem SPACE="ROM" VALUE="AA" STARTADDRESS="1000"

ENDADDRESS="2FFF"

go

The

go

command executes the program code from the current program counter until a

breakpoint or, optionally, a symbol is encountered. This command starts a debug session if
one has not been started. The

go

command can take one of the following forms:

go

Resumes execution from the current location.

go

<symbol>

Resumes execution from the current location and stops at the address associated with
the given symbol, assuming the given symbol is valid and available. If the symbol is
not found, the command has no effect. This version of the

go

command can only be

used during a debug session.

The following are examples:

go

go myfunc

list bp

The

list bp

command displays a list of all of the current breakpoints of the active file.

The syntax of the

list bp

command is:

list bp

loadmem

The

loadmem

command loads the data of an Intel hex file, a binary file, or a text file to a

specified memory space at a specified address. The functionality is similar to the Load
from File command available from the context menu in the

Memory

window (see the

Loading from a File

section on page 396). The syntax of the

loadmem

command is:

loadmem SPACE="<displayed spacename>" FORMAT=<HEX | BIN |TEXT>

"<[PATH\]name>"

[STARTADDRESS="<hexadecimal address>"]

If

STARTADDRESS

is not specified, the data is loaded at the memory lower address.

Advertising