]> Joshua Wise's Git repositories - jwcc.git/blob - examples/blargcpu.ld
update grammar a bit
[jwcc.git] / examples / blargcpu.ld
1 OUTPUT_ARCH(blarg)
2 ENTRY(start)
3 SECTIONS
4 {
5         . = 0x0;
6         _text = .;
7         .text : {
8                 _start = .;
9                 *(.start)
10                 . = ALIGN(2);
11                 *(.text)
12                 . = ALIGN(2);
13                 *(.fixup)
14                 . = ALIGN(2);
15                 *(.gnu.warning)
16                 . = ALIGN(2);
17                 *(.rodata)
18                 . = ALIGN(2);
19                 *(.rodata.*)
20                 . = ALIGN(2);
21         }
22         _etext = .;
23
24         . = 0x8000*2;   /* bytes, not words */
25         _bss = .;
26         .bss : { *(.bss) }
27         _end = .;
28 }
This page took 0.025752 seconds and 4 git commands to generate.