source: soft/giet_vm/sort/sort.ld @ 257

Last change on this file since 257 was 256, checked in by cfuguet, 11 years ago

Introducing generic sort application. This application
can be executed with at most 256 processors

File size: 952 bytes
Line 
1/****************************************************************************
2* Definition of the base address for all virtual segments
3*****************************************************************************/
4
5seg_data_base      = 0x00800000;
6seg_code_base      = 0x00400000;
7
8/***************************************************************************
9* Grouping sections into segments for code and data
10***************************************************************************/
11
12SECTIONS
13{
14    . = seg_code_base;
15    seg_code :
16    {
17        *(.text)
18        *(.text.*)
19    }
20    . = seg_data_base;
21    seg_data :
22    {
23        *(.ctors)
24        *(.rodata)
25        /* . = ALIGN(4); */
26        *(.rodata.*)
27        /* . = ALIGN(4); */
28        *(.data)
29        /* . = ALIGN(4); */
30        *(.lit8)
31        *(.lit4)
32        *(.sdata)
33        /* . = ALIGN(4); */
34        *(.bss)
35        *(COMMON)
36        *(.sbss)
37        *(.scommon)
38    }
39}
40
Note: See TracBrowser for help on using the repository browser.