Hello to everybody.
I have the seguent linker script
MEMORY
{
[etc...]
RAML0 : origin = 0x008000, length = _2k
RAML1 : origin = 0x008800, length = _1k
[etc...]
}
SECTIONS
{
.buffer : > RAML1&RAML1, PAGE 1<--------- I want to place ".buffer" both in RAML0 and RAML1
}
The compiler error me: "expection GROUP or UNION" I have read "SPRU513C–October 2007" on page 188
The guide talks about "[...] same RUN address [...]" but section ".buffer" is not code, is data.
Can you help me?