The commands dump
, append
, and restore
are used
for copying data between target memory and a file. Data is written
into a file using dump
or append
, and restored from a
file into memory by using restore
. Files may be binary, srec,
intel hex, or tekhex (but only binary files can be appended).
dump binary memory
filename
start_addr
end_addr
append binary memory
filename
start_addr
end_addr
dump binary value
filename
expression
append binary memory
filename
expression
dump ihex memory
filename
start_addr
end_addr
dump ihex value
filename
expression
dump srec memory
filename
start_addr
end_addr
dump srec value
filename
expression
dump tekhex memory
filename
start_addr
end_addr
dump tekhex value
filename
expression
restore
filename [
binary]
bias
start
end
restore
command can automatically recognize any known bfd file format, except for
raw binary. To restore a raw binary file you must use the optional argument
binary after the filename.
If bias is non-zero, its value will be added to the addresses contained in the file. Binary files always start at address zero, so they will be restored at address bias. Other bfd files have a built-in location; they will be restored at offset bias from that location.
If start and/or end are non-zero, then only data between file offset start and file offset end will be restored. These offsets are relative to the addresses in the file, before the bias argument is applied.