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

Last change on this file since 753 was 753, checked in by cfuguet, 8 years ago

Introducing the coremark benchmark

File size: 825 bytes
Line 
1/****************************************************************************
2* Definition of the base address for code and data vsegs
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
20    . = seg_data_base;
21    seg_data :
22    {
23        *(.ctors)
24        *(.rodata)
25        *(.rodata.*)
26        *(.data)
27        *(.lit8)
28        *(.lit4)
29        *(.sdata)
30        *(.bss)
31        *(COMMON)
32        *(.sbss)
33        *(.scommon)
34    }
35}
36
Note: See TracBrowser for help on using the repository browser.