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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [ARM7_LPC2368_Eclipse/] [RTOSDemo/] [lpc2368.ld] - Blame information for rev 577

Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

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