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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [m68knommu/] [platform/] [5307/] [CADRE3/] [ram.ld] - Blame information for rev 1775

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

Line No. Rev Author Line
1 199 simons
 
2
MEMORY {
3
        ram    : ORIGIN = 0x20000, LENGTH = 0x007E0000
4
}
5
 
6
SECTIONS {
7
 
8
        .text 0x20000 : {
9
                _stext = . ;
10
                *(.text)
11
                _etext = ALIGN(0x4) ;
12
        } > ram
13
 
14
        .data BLOCK(0x4) : {
15
                _sdata = . ;
16
                __data_start = . ;
17
                *(.rodata)
18
                *(.data)
19
                _edata = ALIGN(0x4) ;
20
        } > ram
21
 
22
        .bss BLOCK(0x4) : {
23
                _sbss = . ;
24
                *(.bss)
25
                *(COMMON)
26
                _ebss = ALIGN(0x4) ;
27
                _end = ALIGN(0x4) ;
28
        } > ram
29
}
30
 

powered by: WebSVN 2.1.0

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