summaryrefslogtreecommitdiff
path: root/boot/arch/amd64/mbr/link.ld
blob: 6d2598501e67c3f40bbcbc5dc4ba7a62ab48365e (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 {
    . = 0x7C00;

    .text : {
        *(.text)
    }

    .data : {
        *(.data)
    }

    .rodata : {
        *(.rodata)
    }

    .bss : {
        *(.bss)
    }
}