Hi all
I want to store my data used in the code at a particular specific address in RAM of the chip how can i do it .
i tried to this but got data abort error #define test ((*volatile unsigned int *)(0x00400001)
test = 0x55;
can any one help me to guide me how to go about it .
The compiler's documentation also contains details of the implementation-specific language extension to allow you to do it in the 'C' source code.
You choose...