Can someone explain me how to store global structures in ram in contiguous memory locations?
I tried the below but it doesnt work..!
pragma section("ramsec",read,write)
pragma section("ramsec1",read,write)
__declspec(allocate("ramsec"))
__declspec(align(8))
StructABC_t a;
__declspec(allocate("ramsec"))
__declspec(align(8))
StructDA_t b;
i want the above a,b structure to be stored in ram next to each other!!???