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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [arch/] [cris/] [boot/] [compressed/] [decompress.ld] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1275 phoenix
OUTPUT_FORMAT(elf32-us-cris)
2
 
3
MEMORY
4
        {
5
        dram : ORIGIN = 0x40700000,
6
               LENGTH = 0x00100000
7
        }
8
 
9
SECTIONS
10
{
11
        .text :
12
        {
13
                _stext = . ;
14
                *(.text)
15
                *(.rodata)
16
                *(.rodata.*)
17
                _etext = . ;
18
        } > dram
19
        .data :
20
        {
21
                *(.data)
22
                _edata = . ;
23
        } > dram
24
        .bss :
25
        {
26
                *(.bss)
27
                _end = ALIGN( 0x10 ) ;
28
        } > dram
29
}

powered by: WebSVN 2.1.0

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