Other Parts Discussed in Thread: C2000WARE
Tool/software: Code Composer Studio
I'm writing an assembly language program and building it through CCSv8.
I'm initialising variables as :
"
.data
a: .word 0xC000
b: .word 0x4000
"
This should initialise the variables a and b with values 0xc000 and 0x4000 respectively.
However, when I'm looking at their respective values in memory, it's showing FFFF and FFFF for both.
Why is it happening?