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

Subversion Repositories darkriscv

[/] [darkriscv/] [trunk/] [src/] [darksocv.ld] - Blame information for rev 2

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

Line No. Rev Author Line
1 2 marcelos
MEMORY
2
{
3
    IO (rw!x) : ORIGIN = 0x80000000, LENGTH = 0x10
4
    ROM (x!rw) : ORIGIN = 0x00000000, LENGTH = 0x1000
5
    RAM (rw!x) : ORIGIN = 0x00001000, LENGTH = 0x1000
6
}
7
SECTIONS
8
{
9
    .io :
10
    {
11
        io.o(COMMON)
12
    } > IO
13
    .text :
14
    {
15
        boot.o(.text)
16
        *(.text)
17
    } > ROM
18
    .data :
19
    {
20
        *(.sbss)
21
        *(.rodata*)
22
        *(.data)
23
        *(.bss)
24
        *(.rela*)
25
 *(COMMON)
26
    } > RAM
27
}

powered by: WebSVN 2.1.0

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