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

Subversion Repositories or1200_soc

[/] [or1200_soc/] [trunk/] [boards/] [de1_board/] [sw/] [tests/] [debug/] [__tmp/] [flash.ld] - Blame information for rev 21

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 21 qaztronic
/* ------------------------------ */
2
/* link script */
3
/* ------------------------------ */
4
 
5
MEMORY
6
        {
7
        flash             : ORIGIN = 0x00000000, LENGTH = 0x00400000
8
        aram              : ORIGIN = 0x04000000, LENGTH = 0x00020000
9
        emem              : ORIGIN = 0x08000000, LENGTH = 0x00002000
10
        qmem              : ORIGIN = 0xffe00000, LENGTH = 0x00002000
11
        }
12
 
13
SECTIONS
14
{
15
        .text :
16
        {
17
        . = 0x100;
18
        reset_func = .;
19
        *(.vectors)
20
        . = 0x8000;
21
        *(.text)
22
        } > flash
23
 
24
        .rodata :
25
        {
26
        *(.rodata)
27
        *(.rodata.*)
28
        . = ALIGN(4);
29
        } > flash
30
 
31
        .data :
32
        {
33
        *(.data)
34
        } > emem
35
 
36
        .bss :
37
        {
38
        *(.bss)
39
        } > emem
40
 
41
        .stack (NOLOAD) :
42
        {
43
        *(.stack)
44
        } > emem
45
}

powered by: WebSVN 2.1.0

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