source: soft/giet_vm/applications/gameoflife/gameoflife.ld @ 655

Last change on this file since 655 was 502, checked in by alain, 9 years ago

1) Introduce distributed barriers in the multi-threads applications
(classif) transpose, convol, sort, gameoflife)

2) Introducing support for architectures containing empty clusters
in the mapping of these multi-threaded applications.

3) Removing the "command line arguments" in the sort application
(replaced by the giet_procs_number() system call.

  • Property svn:executable set to *
File size: 821 bytes
Line 
1/****************************************************************************
2* Definition of the base address for all virtual segments
3*****************************************************************************/
4
5seg_data_base      = 0x20000000;
6seg_code_base      = 0x10000000;
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    }
19    . = seg_data_base;
20    seg_data :
21    {
22        *(.ctors)
23        *(.rodata)
24        *(.rodata.*)
25        *(.data)
26        *(.lit8)
27        *(.lit4)
28        *(.sdata)
29        *(.bss)
30        *(COMMON)
31        *(.sbss)
32        *(.scommon)
33    }
34}
35
Note: See TracBrowser for help on using the repository browser.