diff options
Diffstat (limited to 'msp430/msp430fr2476.ld')
-rw-r--r-- | msp430/msp430fr2476.ld | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/msp430/msp430fr2476.ld b/msp430/msp430fr2476.ld index 011683b..62004bd 100644 --- a/msp430/msp430fr2476.ld +++ b/msp430/msp430fr2476.ld @@ -224,11 +224,6 @@ SECTIONS KEEP (*(.dtors))
} > FRAM
- .upper.rodata :
- {
- *(.upper.rodata.* .upper.rodata)
- } > HIFRAM
-
/* This section contains data that is initialised during load
but not on application reset. */
.persistent :
@@ -281,19 +276,6 @@ SECTIONS PROVIDE(__romdatastart = LOADADDR(.lower.data));
PROVIDE (__romdatacopysize = SIZEOF(.lower.data) + SIZEOF(.data));
- .upper.data :
- {
- __upper_data_init = LOADADDR (.upper.data);
- /* Status word. */
- SHORT(1);
- __high_datastart = .;
- *(.upper.data.* .upper.data)
- __high_dataend = .;
- } > HIFRAM AT> FRAM
-
- __rom_highdatacopysize = SIZEOF(.upper.data) - 2;
- __rom_highdatastart = LOADADDR(.upper.data) + 2;
-
.lower.bss :
{
. = ALIGN(2);
@@ -313,16 +295,6 @@ SECTIONS } > RAM
PROVIDE (__bsssize = SIZEOF(.lower.bss) + SIZEOF(.bss));
- .upper.bss :
- {
- . = ALIGN(2);
- __high_bssstart = .;
- *(.upper.bss.* .upper.bss)
- . = ALIGN(2);
- __high_bssend = .;
- } > HIFRAM
- __high_bsssize = SIZEOF(.upper.bss);
-
/* This section contains data that is not initialised during load
or application reset. */
.noinit (NOLOAD) :
@@ -395,12 +367,6 @@ SECTIONS KEEP (*(.tm_clone_table))
} > FRAM
- .upper.text :
- {
- . = ALIGN(2);
- *(.upper.text.* .upper.text)
- } > HIFRAM
-
.info (NOLOAD) : {} > INFOMEM /* MSP430 INFO FLASH MEMORY SEGMENTS */
/* The rest are all not normally part of the runtime image. */
|