1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/cpu/msp430_common/ldscripts/xfa.ld

25 lines
294 B
Plaintext

SECTIONS
{
.rodata :
{
KEEP (*(SORT(.roxfa.*)))
} > ROM
}
INSERT AFTER .rodata;
SECTIONS
{
.data :
{
KEEP (*(SORT(.xfa.*)))
} > RAM AT> ROM
. = ALIGN(2);
_edata = .;
PROVIDE (edata = .);
PROVIDE (__dataend = .);
}
INSERT AFTER .data;