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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [or32/] [board/] [ram.ld] - Blame information for rev 988

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

Line No. Rev Author Line
1 666 simons
MEMORY
2
        {
3 988 simons
        romvec : ORIGIN = 0xf0010000, LENGTH = 0x00002000
4
        flash  : ORIGIN = 0xf0012000, LENGTH = 0x00200000 - 0x00012000
5
        eflash : ORIGIN = 0xf0200000, LENGTH = 0
6 666 simons
        ramvec : ORIGIN = 0x00000000, LENGTH = 0x00002000
7
        ram    : ORIGIN = 0x00020400, LENGTH = 0x00400000 - 0x00020400
8
        eram   : ORIGIN = 0x00400000, LENGTH = 0
9
        initrd : ORIGIN = 0x00700000, LENGTH = 0x00100000
10
        }
11
 
12
SECTIONS
13
{
14
        .ramvec :
15
        {
16
        __ramvec_start = . ;
17
        *(.ramvec)
18
        __ramvec_end = . ;
19
        } > ramvec
20
        .romvec :
21
        {
22
        __romvec = . ;
23
        } > romvec
24
        .text :
25
        {
26
        __ramstart = . ;
27
        text_start = . ;
28
        *(.text)
29
        __etext = . ;
30
        ___data_rom_start = ALIGN ( 4 ) ;
31
        } > ram
32
        .data :
33
        {
34
        __sdata = . ;
35
        ___data_start = . ;
36
        *(.data)
37
        __edata = . ;
38
        __end_data = . ;
39
        edata = ALIGN( 0x10 ) ;
40
        } > ram
41
        .bss :
42
        {
43
        __sbss = ALIGN( 0x10 ) ;
44
        ___bss_start = ALIGN( 0x10 ) ;
45
        __data_end = ALIGN( 0x10 ) ;
46
        *(.bss)
47
        *(COMMON)
48
        __ebss = . ;
49
        ___bss_end = . ;
50
        end = ALIGN( 0x10 ) ;
51
        __end = ALIGN( 0x10 ) ;
52
        } > ram
53
        .eram :
54
        {
55
        __ramend = . ;
56
        } > eram
57
        .initrd :
58
        {
59
        __initrd_start = . ;
60
        *(.initrd)
61
        __initrd_end = . ;
62
        } > initrd
63
}

powered by: WebSVN 2.1.0

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