3.2.2 --listing-lhs-width
#
The --listing-lhs-width
option is used to set the width
of the output data column of the listing file. By default, this is set to 3 for program
memory and 4 for data memory. The following line is extracted from a listing. The output
data column is in bold text.
6 000000 50 00 20 mov #5, w0
If the option --listing-lhs-width 2
is used, then the
same line will appear as follows in the listing:
6 000000 50 00 mov #5, w0
6 20