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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [m68knommu/] [platform/] [68EZ328/] [PalmV/] [ram.ld] - Blame information for rev 1781

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

Line No. Rev Author Line
1 199 simons
MEMORY
2
        {
3
        romvec : ORIGIN = 0x10c10000, LENGTH = 0x00000400
4
        flash  : ORIGIN = 0x10c10400, LENGTH = 0x00200000 - 0x00010400
5
        eflash : ORIGIN = 0x10e00000, LENGTH = 0
6
        ramvec : ORIGIN = 0x00000000, LENGTH = 0x00000400
7
        bvec   : ORIGIN = 0x00000400, LENGTH = 0x00000400
8
        ram    : ORIGIN = 0x00000800, LENGTH = 0x00200000 - 0x00000800
9
        eram   : ORIGIN = 0x00200000, LENGTH = 0
10
        }
11
 
12
SECTIONS
13
{
14
        .fakevec :
15
        {
16
        } > romvec
17
        .rom :
18
        {
19
        __rom_start = . ;
20
        } > flash
21
        .eflash :
22
        {
23
        _flashend = . ;
24
        } > eflash
25
        .realvec :
26
        {
27
        _ramvec = . ;
28
        } > ramvec
29
        .romvec :
30
        {
31
        _romvec = . ;
32
        } > bvec
33
        .text :
34
        {
35
        __ram_start = . ;
36
        text_start = . ;
37
        *(.text)
38
        _etext = . ;
39
        __data_rom_start = ALIGN ( 4 ) ;
40
        } > ram
41
        .data :
42
        {
43
        _sdata = . ;
44
        __data_start = . ;
45
        *(.data)
46
        _edata = . ;
47
        edata = ALIGN( 0x10 ) ;
48
        } > ram
49
        .bss :
50
        {
51
        _sbss = ALIGN( 0x10 ) ;
52
        __bss_start = ALIGN( 0x10 ) ;
53
        __data_end = ALIGN( 0x10 ) ;
54
        *(.bss)
55
        *(COMMON)
56
        _ebss = . ;
57
        __bss_end = . ;
58
        end = ALIGN( 0x10 ) ;
59
        _end = ALIGN( 0x10 ) ;
60
        } > ram
61
        .eram :
62
        {
63
        _ramend = . ;
64
        } > eram
65
}

powered by: WebSVN 2.1.0

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