i program TMS320F280xx code with assembly language, and try to get the absolute listing using abs200 & cl2000 -v28 --absolute listing.
i use .label directive to create some load addresses in order to move partial code to SARAM. But, these load addresses seems to be wrong in the absolute listing, and they are always 0. EX:
.label load_addr1
<code>
MOVL XAR0, #load_addr1
in the above example, the load address of (load_addr1) is 0x3f6062, its resultant op code must be 8D3F 6062, but i always get 8D00 0000.
i don't know why!