comparison nuc-fw/finlink/ld-script.src @ 132:2c5160a9d652

nuc-fw: switched from nucdemo to Riviera, got some serial output
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sat, 02 Nov 2013 01:48:11 +0000
parents f459043fae0c
children
comparison
equal deleted inserted replaced
131:035672b72f9b 132:2c5160a9d652
26 /* XIP code, going into flash or XRAM emulating flash */ 26 /* XIP code, going into flash or XRAM emulating flash */
27 xip.text : { 27 xip.text : {
28 *(xip.text*) 28 *(xip.text*)
29 xipcode.o(.text*) 29 xipcode.o(.text*)
30 *libplus.xip.a:(.text*) 30 *libplus.xip.a:(.text*)
31 *librv.a:(.text*)
31 *libsprintf.a:(.text*) 32 *libsprintf.a:(.text*)
32 /* let's put the ARM->Thumb veneers in the XIP section */ 33 /* let's put the ARM->Thumb veneers in the XIP section */
33 *(.glue_7) 34 *(.glue_7)
34 } > Buildmem 35 } > Buildmem
35 36
81 82
82 ext.bss (NOLOAD) : { 83 ext.bss (NOLOAD) : {
83 *(ext.bss*) 84 *(ext.bss*)
84 xipcode.o(.bss* COMMON) 85 xipcode.o(.bss* COMMON)
85 *libplus.xip.a:(.bss* COMMON) 86 *libplus.xip.a:(.bss* COMMON)
87 *librv.a:(.bss* COMMON)
86 *libsprintf.a:(.bss* COMMON) 88 *libsprintf.a:(.bss* COMMON)
87 . = ALIGN(4); 89 . = ALIGN(4);
88 } > XRAM 90 } > XRAM
89 __extbss_start = ADDR(ext.bss); 91 __extbss_start = ADDR(ext.bss);
90 __extbss_size = SIZEOF(ext.bss); 92 __extbss_size = SIZEOF(ext.bss);