User`s guide

Debugging for DSP56800E
Command-Line Debugging
240
Targeting MC56F83xx/DSP5685x Controllers
copy
Use the copy debugging command to copy the contents of a memory address or block
of addresses to another memory location.
Prototype
co[py] addr_group addr
addr_group ::= address | addr_block
addr_block ::= address_first..address_last |
address#count
count ::= a value indicating the number of memory locations
The addr_group symbol is the location (or locations) from which the command copies
the contents. The addr variable specifies the first address in memory to which the
command copies the contents.
Examples
Table 8.11
shows examples of the copy command.
config project Get the default project name.
config target sdm Change the default build target to sdm.
Table 8.11 Debugging Command Examples: copy
Example Description
copy p:00..1f p:30 This example copies the contents of p memory
addresses 00 through 1f to a contiguous block
of p memory beginning at address 30.
copy p:20#10 p:50 This example copies the contents of 10
consecutive p memory locations that start at
address 20 to a contiguous block of p memory
beginning at address 50.
Table 8.10 Debugging Command Examples: config (continued)
Example Description