aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv/machine/config.ld
blob: 7d9bbf5ecd13afa6909bd485762ef81d8465824e (plain)
1
2
3
4
5
6
7
8
9
10
MEMORY {
    dram_space (rwx) : ORIGIN = 0x80000000, LENGTH = 1024
}

SECTIONS {
    .text : {
        *(.text.bios)
        *(.text)
    } > dram_space
}