source: soft/giet_vm/applications/coproc/coproc.ld @ 533

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

Introducing application coproc to test support fo the VciMwmrDma? component.

File size: 822 bytes
Line 
1/****************************************************************************
2* Definition of the base address for all virtual segments
3*****************************************************************************/
4
5seg_code_base      = 0x10000000;
6seg_data_base      = 0x20000000;       
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.