source: trunk/user/convol/convol.ld @ 645

Last change on this file since 645 was 645, checked in by alain, 4 years ago

Introducing application "convol".

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