fixed incorrect size of the alib_intvec structure, which misaligned the
[lugburz] / amiga.ld
1 OUTPUT_ARCH(m68k)
2
3 PROVIDE (_stacktop = 0x80000);
4
5 SECTIONS {
6         /* bootblock will load us at 64k */
7         . = 0x10000;
8
9         .startup : { * (.startup); }
10         .text : { * (.text); }
11         .rodata : { * (.rodata); }
12         .data : { * (.data); }
13
14         .dummy ALIGN(4): { LONG(42); }
15
16         .bss ALIGN(4): {
17                 _bss_start = .;
18                 * (.bss);
19                 . = ALIGN(4);
20                 _bss_end = .;
21         }
22         _bss_size = SIZEOF(.bss);
23
24         _mem_start = .;
25 }