I am trying to convert an assembly program written in IAR to CCS 6.0 but am not sure how to designate where a lookup table would go in information memory. the following code is what I used in IAR:
ORG 0x1040
EVEN
Mydata DB 0xAA, 0xAC, 0xAE, 0x12
I think the equivalents in CCS are:
.data
.align 2
Mydata .byte 0xAA, 0xAC, 0xAE, 0x12
But...how do I know where in memory this is going? I want to set a specific location so that it goes into information memory so that it is available after I power down the chip.