LoadTI works great, but the problem is that I need to initialize a few memory locations.
The options are
Options:
-a, --async-run
-b, --init-bss-section[=VALUE]
-c, --cfg-file=CONFIG_FILE
-h, --help
-l, --load
-mlr, --mem-load-raw="PAGE,ADDR,FILE,TYPE_SIZE,BYTE_SWAP"
-mld, --mem-load-dat="PAGE,ADDR,FILE,LEN"
-msr, --mem-save-raw="PAGE,ADDR,FILE,LEN,TYPE_SIZE,BYTE_SWAP"
-msd, --mem-save-dat="PAGE,ADDR,FILE,LEN,IO_FORMAT,APPEND"
-n, --no-profile
-q, --quiet
-r, --reset
-s, --stdout-file=FILE
-t, --timeout=VALUE
-v, --verbose
-x, --xml-log=FILE
-@, --options-file=FILE
So, let's say I want to initialize address 0x80 to 0xFFFF, and address 0x91 to 0x1111. How would I use LoadTI to do this?
I'm guessing that I need to specifcy the -mlr option, but there's NO documentation about what the parameters "PAGE,ADDR,FILE,TYPE_SIZE,BYTE_SWAP" mean, or how to use them.
Can anyone help?