]> Joshua Wise's Git repositories - jwcc.git/blame - examples/blargcpu.ld
update grammar a bit
[jwcc.git] / examples / blargcpu.ld
CommitLineData
933e60e3
JW
1OUTPUT_ARCH(blarg)
2ENTRY(start)
3SECTIONS
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.049226 seconds and 4 git commands to generate.