3.2.4 --listing-rhs-width
#
The --listing-rhs-width
option is used to set the
maximum width in characters of the lines from the source file. By default, this is set
to 100. The following lines are extracted from a listing that was created without using
the --listing-rhs-width
option. The text in bold are the lines from the
source file.
2 0000 54 68 69 73 .ascii "This line is long."
2 20 6C 69 6E
2 65 20 69 73
2 20 6C 6F 6E
2 67 65 72 20
If the option --listing-rhs-width 20
is used, then the
same line will appear as follows in the listing:
2 0000 54 68 69 73 .ascii "This line i
2 20 6C 69 6E
2 65 20 69 73
2 20 6C 6F 6E
2 67 65 72 20
The line is truncated (not wrapped) in the listing, but the data is still there.