|
rrlink - binary linker
--------------------------------------------------------------------------------
command-line options:
--------------------------------------------------------------------------------
usage: rrlink [options]
help -? -h --help this help
--version print program version
--show-config show active configuration
--show-supported show supported architectures
--cpu [type] set target cpu
-t --target [system] set target system
-f --file [filename] name input file (else stdin)
-o [filename] name output file (else stdout)
-b --base [address] base address
-e --entry [address] entry point
load --load [filename start end offset] load prg-file to target memory
loadbin --loadbin [filename start end offset] load bin-file to target memory
save --save [filename] [start] [end] save prg-file from target memory
poke --poke [address] [byte] write byte to target memory
pokew --pokew [address] [word] write word to target memory
pokel --pokel [address] [long] write longword to target memory
fill --fill [start] [end] [byte] fill target memory with byte
--remote work in remote mode
-s --silent silent mode (only fatal errors)
-v --verbose verbose mode
the commandline is processed from left to right. all numeric values may be
either decimal (1234), hex (0x1234, $1234) or bin (%1011). short options may
change, please use long options in scripts.
|
| |