We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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
OOPS !
it works with
extern char TEST[] ;
Sorry