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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [m68knommu/] [platform/] [5206e/] [toolvox/] [rom.ld] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 199 simons
 
2
MEMORY {
3
        /* make room for VECBASE(0x400) and STACK(0x1000) */
4
        ram    : ORIGIN = 0x00100400, LENGTH = 0x0fec00
5
        /* rom (flash) actually starts at 0xffe00000, but linux can co-exist
6
           with the shipping product as an alternative boot mode. */
7
        rom    : ORIGIN = 0xfff00000, LENGTH = 0x100000
8
}
9
 
10
SECTIONS {
11
 
12
        .text : {
13
                _stext = . ;
14
                *(.text)
15
                _etext = ALIGN(0x4) ;
16
                __data_rom_start = ALIGN(0x4) ;
17
        } > rom
18
 
19
        .data : AT(_etext) {
20
                _sdata = . ;
21
                __data_start = . ;
22
                *(.rodata)
23
                *(.data)
24
                _edata = ALIGN(0x4) ;
25
        } > ram
26
 
27
        .bss BLOCK(0x4) : {
28
                _sbss = . ;
29
                *(.bss)
30
                *(COMMON)
31
                _ebss = ALIGN(0x4) ;
32
                _end = ALIGN(0x4) ;
33
        } > ram
34
}
35
 

powered by: WebSVN 2.1.0

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