OpenCores
URL https://opencores.org/ocsvn/potato/potato/trunk

Subversion Repositories potato

[/] [potato/] [trunk/] [benchmarks/] [benchmark.ld] - Blame information for rev 58

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 skordal
/*
2
 * Linker Script for the Potato Processor benchmark applications
3
 * (c) Kristian Klomsten Skordal 2014 - 2015 
4
// Report bugs and issues on 
5
 */
6
 
7
/*
8
 * The linker script is intended to be used with the "official" test platform,
9
 * described in platform.h.
10
 */
11
 
12
ENTRY(_start);
13
 
14
SECTIONS
15
{
16 58 skordal
        .text 0x100 :
17 13 skordal
        {
18 58 skordal
                *(.init)
19 13 skordal
                *(.text*)
20
                __text_end = .;
21
        }
22
 
23
        .data 0x2000 : AT(ADDR(.text) + SIZEOF(.text))
24
        {
25
                __data_begin = .;
26
                *(.rodata*)
27
                *(.data*)
28
                __data_end = ALIGN(4);
29
        }
30
 
31
        .bss ALIGN(4):
32
        {
33
                __bss_begin = .;
34
                *(.bss*)
35
                __bss_end = ALIGN(4);
36
        }
37
 
38
        __stack_top = 0x4000;
39
}
40
 
41
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.