Hi,
I want to store fixed strings in flash memory. How can I access strings I tried following code, but this does not work...
My assembly file with the definition of the string
EXPORT TEST AREA Example, CODE, READONLY TEST DCB "TestString",0 END
My C file that uses the string
extern char* TEST ; while (TEST[i] !=0) PutChar(TEST[i++]);
Any better ideas ?
Luc