summaryrefslogtreecommitdiff
path: root/src/arch/amd64/linker.ld
blob: 4e796e2cee936bfbaf62f5de06b52e4255bc4a82 (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
ENTRY(start)

SECTIONS {
    . = 1M;

    .boot BLOCK(4K) : ALIGN(4K)
    {
        *(.multiboot)
    }

    .rodata BLOCK(4K) : ALIGN(4K)
    {
        *(.rodata)
    }

    .text BLOCK(4K) : ALIGN(4K)
    {
        *(.text)
    }

    .bss BLOCK(4K) : ALIGN(4K)
    {
        *(.bss)
    }
}