declaring variables with ram address
I declared some test variable like,
unsigned short *testvar= (unsigned short *)0x20020074;
unsigned char *testvar1[4] = {(unsigned char *)0x20020076,(unsigned char *)0x20020077,
(unsigned char *)0x20020078,(unsigned char*)0x20020079};
but unfortunately in mid I left some part of the ram space and again declared a variable like,
unsigned short *testvar2= (unsigned short *)0x20020092;
I'm computing checksum from 0x20020074 to 0x20020092 and storing into flash , but 0x20020080 to 0x20020091 nowhere i'm declaring this space .is it create problem when i'm retrieving data from flash into ram?
