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

Subversion Repositories wdsp

[/] [wdsp/] [trunk/] [sw/] [support/] [orp.ld] - Blame information for rev 5

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 parrado
/*
2
MEMORY
3
        {
4
        vectors : ORIGIN = 0x00000000, LENGTH = 0x00002000
5
        flash   : ORIGIN = 0x04000000, LENGTH = 0x00200000
6
        ram     : ORIGIN = 0x00002000, LENGTH = 0x001fe000
7
        icm     : ORIGIN = 0x00800000, LENGTH = 0x00004000
8
        }
9
 */
10
MEMORY
11
        {
12
        reset   : ORIGIN = 0x00000000, LENGTH = 0x00000200
13
        vectors : ORIGIN = 0x00000200, LENGTH = 0x00001000
14
    ram     : ORIGIN = 0x00001200, LENGTH = 0x00006E00
15
 
16
        }
17
 
18
SECTIONS
19
{
20
        .reset :
21
        {
22
        *(.reset)
23
        } > reset
24
 
25
 
26
 
27
        .vectors :
28
        {
29
        _vec_start = .;
30
        *(.vectors)
31
        _vec_end = .;
32
        } > vectors
33
 
34
        .text :
35
        {
36
        *(.text)
37
        } > ram
38
 
39
      .rodata :
40
        {
41
        *(.rodata)
42
        *(.rodata.*)
43
        } > ram
44
 
45
     .icm :
46
        {
47
        _icm_start = .;
48
        *(.icm)
49
        _icm_end = .;
50
        } > ram
51
 
52
     .data :
53
        {
54
        _dst_beg = .;
55
        *(.data)
56
        _dst_end = .;
57
        } > ram
58
 
59
      .bss :
60
        {
61
        *(.bss)
62
        } > ram
63
 
64
      .stack (NOLOAD) :
65
        {
66
        *(.stack)
67
        _src_addr = .;
68
        } > ram
69
 
70
}

powered by: WebSVN 2.1.0

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