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