This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

how to access an array in flashmemory

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

0