source: soft/giet_vm/applications/router/router.ld @ 753

Last change on this file since 753 was 451, checked in by alain, 10 years ago

Modify the "router" application to support the
explicit declaration and initialisation of the MWMR channels
by the user application itself.
Introduce the file "router.py"

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