aboutsummaryrefslogtreecommitdiff
path: root/debug_rom/link.ld
blob: 897c42da001d1009bceb3bee32a83b7693d019cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
OUTPUT_ARCH( "riscv" )
ENTRY( entry )
SECTIONS
{
    .whereto 0x300 :
    {
        *(.whereto)
    }   
    . = 0x800;
    .text :
    {
        *(.text)
    }
    _end = .;
}