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

Overlapping Memory areas in ARM

Hi,

Is there a way to allow memory overlapping in MDK-ARM?

I have tried to use the "__attribute__((at(address)))" but it does not work.

Ex.

unsigned char array1[20] __attribute__((at(0x20002000)));
unsigned char array2[10] __attribute__((at(0x2000200A)));

0