aboutsummaryrefslogtreecommitdiffstats
path: root/msp430/msp430fr2476.ld
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-11-13 09:13:32 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-11-13 09:13:32 -0500
commitaf51fb5bdfd9c338b7cf8b75b792e04a2667af5e (patch)
tree0d6baf72acf05d263dcd8ed0b13888fb6265df81 /msp430/msp430fr2476.ld
parent5162349f925dfc48f7269538b9cdb1c06df8d5ff (diff)
add LIBALEE_SECTION; minor fixes
Diffstat (limited to 'msp430/msp430fr2476.ld')
-rw-r--r--msp430/msp430fr2476.ld15
1 files changed, 13 insertions, 2 deletions
diff --git a/msp430/msp430fr2476.ld b/msp430/msp430fr2476.ld
index 574a76b..a65f652 100644
--- a/msp430/msp430fr2476.ld
+++ b/msp430/msp430fr2476.ld
@@ -44,7 +44,7 @@ MEMORY {
BOOTCODE : ORIGIN = 0x1C00, LENGTH = 0x0400 /* END=0x1FFF, size 1024 */
ROMLIB : ORIGIN = 0xC0000, LENGTH = 0x4000 /* END=0xC3FFF, size 16384 */
BSL1 : ORIGIN = 0xFFC00, LENGTH = 0x0400 /* END=0xFFFFF, size 1024 */
- RAM : ORIGIN = 0x2000, LENGTH = 0x2000 /* END=0x3FFF, size 8192 */
+ RAM (rwx) : ORIGIN = 0x2000, LENGTH = 0x2000 /* END=0x3FFF, size 8192 */
INFOMEM : ORIGIN = 0x1800, LENGTH = 0x0200 /* END=0x19FF, size 512 */
FRAM (rwx) : ORIGIN = 0x8000, LENGTH = 0x7F80 /* END=0xFF7F, size 32640 */
HIFRAM (rxw) : ORIGIN = 0x10000, LENGTH = 0x00007FFF
@@ -218,6 +218,14 @@ SECTIONS
PROVIDE (__dict = .);
} > TINYRAM
+ .libalee : {
+ . = ALIGN(2);
+ PROVIDE (__libaleedst = .);
+ *(.libalee)
+ } > RAM AT> FRAM
+ PROVIDE(__libaleebegin = LOADADDR(.libalee));
+ PROVIDE (__libaleeend = LOADADDR(.libalee) + SIZEOF(.libalee));
+
.data :
{
. = ALIGN(2);
@@ -295,11 +303,14 @@ SECTIONS
KEEP (*(.init))
KEEP (*(.fini))
KEEP (*(.tm_clone_table))
+
+ . = ALIGN(2);
+ PROVIDE (_etext = .);
} > FRAM
.lodict :
{
- . = ALIGN(2);
+ . = ALIGN(1024);
*(.lodict)
} > FRAM