String

The -string option will embed an ASCII string at a fixed address. The usage of this option is:

-string@Address[tCode]=”Text

where:

For example:

-string@1000=”My favorite string”

will store the ASCII data for the string, My favorite string (including the null character terminator), at address 1000h.

And again:

-string@1000t34=”My favorite string”

will store the same string, trailing every byte in the string with the HEX code 34h.