source: soft/giet_vm/boot/boot.ld @ 203

Last change on this file since 203 was 203, checked in by alain, 12 years ago

Introducing support for XICU

File size: 791 bytes
Line 
1
2/****************************************************************************/
3/* Definition of the base addresses for all vsegs used by the GIET_VM       */
4/****************************************************************************/
5
6INCLUDE giet_vsegs.ld
7
8/****************************************************************************/
9/* Grouping sections into virtual segment for boot code and data             */
10/****************************************************************************/
11
12SECTIONS
13{
14    . = seg_boot_code_base;
15    seg_boot_code :
16    {
17        *(.boot)
18        *(.text)
19
20        *(.rodata)
21        *(.rodata.*)
22        *(.data)
23        *(.lit8)
24        *(.lit4)
25        *(.sdata)
26        *(.bss)
27        *(COMMON)
28        *(.sbss)
29        *(.scommon)
30    }
31}
32
Note: See TracBrowser for help on using the repository browser.