Part Number: MSP430F2122
I want to migrate from IAR to CSS, assembler only (no C program). There is now one problem left:
How do I migrate from ORG statement of IAR? I want to store (assemble) some data byte in the info memory.
I tried several options.
IAR:
ORG 1040h
DB 1,2,3,4
CCS:
.sect ".infoC" ;(.infoC is defined in the include file "MSP430F2122.h")
.byte 1,2,3,4
This didn't work, does not store the bytes into info memory, No error message during debug.
I used the "erease program and info memory" option (in the debug option window). Erasing is done but no programming.

