This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

How to check .sect section data with memory browser?

Hi,

I am running code at TI CCSv5.1, Windows 7, 64 bit os.

I want to know low level asm with the simple code from the 186v.pdf:

.sect ".text"
.global userfunc
.global printf

userfunc: .asmfunc stack_usage(16)
CALL .S1 printf
STW .D2T2 B3, *B15--(16)
MVKL .S2 RL0, B3
MVKL .S1 SL1+0,A3
MVKH .S1 SL1+0,A3

STW .D2T1 A3, *+B15(4)
|| MVKH .S2 RL0,B3

RL0: LDW .D2T2 *++B15(16), B3
ZERO .D1 A4
NOP 3
RET .S2 B3
NOP 5
.endasmfunc

.sect ".const"
SL1: .string "Hello World!", 10, 0

I find that I can input RL0 at the memory browser directly. But memory browser does not recognize 'SL1' at all. How to check SL1 in CCS v5.1?

Thanks,