Exit, Fillmem, Exit fillmem go – Zilog ZUSBOPTS User Manual
Page 400

Supported Script File Commands
UM017105-0511
372
Zilog Developer Studio II – ZNEO™
User Manual
When displaying a structure's value, the examine command also displays the names of each
of the structure's elements.
exit
The
exit
command exits the IDE. The following example presents the syntax of the
exit
command:
exit
fillmem
The
fillmem
command fills a block of a specified memory space with the specified
value. The functionality is similar to the Fill Memory command available from the context
menu in the Memory window (see the
section on page 334). The syntax of
the
fillmem
command is:
fillmem SPACE="<displayed spacename>" FILLVALUE="<hexcadecimal
value>"
[STARTADDRESS="<hexadecimal address>"]
[ENDADDRESS="<hexadecimal address>"]
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
of the
go
command can only be used during a debug session.
To see the nth through the n+5th values of array x, enter:
?x[n]:5
If x is an array of pointers to strings, enter:
? asciz *x[n]
Note: