summaryrefslogtreecommitdiff
path: root/prog/basic/basic.ld
blob: 9762c82c3c2e1f19412442f41bfa6431653a67e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SECTIONS
{
    .text 0x8000 :  { 
        KEEP(*(.text.boot))  
        *(.text*) 
        . = ALIGN(8);
    }
    .rodata : { *(.rodata*) }
    .data : { 
            *(.data*) 
            . = ALIGN(4);
    } 
    .bss : {
        . = ALIGN(4);
        *(.bss*)
        *(COMMON)
        . = ALIGN(8);
        . = ALIGN(8);
    }
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback