summaryrefslogtreecommitdiff
path: root/boot/arch/amd64/mbr/link.ld
blob: 77ded5c7975ca5a0df8ef4273cd06aeccee2e763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
OUTPUT_FORMAT(binary)

SECTIONS {
    . = 0x0000;

    .text : {
        *(.text)
    }

    .data : {
        *(.data)
    }

    .rodata : {
        *(.rodata)
    }

    .bss : {
        *(.bss)
    }
}