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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [ARM7_AT91FR40008_GCC/] [atmel-rom.ld] - Blame information for rev 615

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 577 jeremybenn
MEMORY
2
{
3
        flash   : ORIGIN = 0x00000000, LENGTH = 2048K
4
        ram             : ORIGIN = 0x00300000, LENGTH = 256K
5
}
6
 
7
__stack_end__ = 0x00300000 + 256K - 4;
8
 
9
SECTIONS
10
{
11
        . = 0;
12
        startup : { *(.startup)} >flash
13
 
14
        prog :
15
        {
16
                *(.text)
17
                *(.rodata)
18
                *(.rodata*)
19
                *(.glue_7)
20
                *(.glue_7t)
21
        } >flash
22
 
23
        __end_of_text__ = .;
24
 
25
        .data :
26
        {
27
                __data_beg__ = .;
28
                __data_beg_src__ = __end_of_text__;
29
                *(.data)
30
                __data_end__ = .;
31
        } >ram AT>flash
32
 
33
        .bss :
34
        {
35
                __bss_beg__ = .;
36
                *(.bss)
37
        } >ram
38
 
39
        . = ALIGN(4);
40
        .eh_frame :
41
        {
42
                 KEEP (*(.eh_frame))
43
        } > ram
44
 
45
        /* Align here to ensure that the .bss section occupies space up to
46
        _end.  Align after .bss to ensure correct alignment even if the
47
        .bss section disappears because there are no input sections.  */
48
        . = ALIGN(32 / 8);
49
}
50
        . = ALIGN(32 / 8);
51
        _end = .;
52
        _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
53
        PROVIDE (end = .);
54
 
55
 

powered by: WebSVN 2.1.0

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