aboutsummaryrefslogtreecommitdiff
path: root/conf/user-link.ld
blob: 9bbe6aea27b09b100694bfa319aeeae53ed95f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
ENTRY(_start)

SECTIONS
{
    . = 0x10000;

    .text :
    {
        *(.text)
        *(.text.*)
    }

    .data : ALIGN(8)
    {
        *(.data)
        *(.data.*)
    }

    .bss : ALIGN(8)
    {
        __bss_start = .;
        *(.bss)
        *(.bss.*)
        __bss_end = .;
    }
}