malloc/calloc/free and minimal allocator testing
[lugburz] / amiga.ld
1 OUTPUT_ARCH(m68k)
2
3 SECTIONS {
4         /* bootblock will load us at 64k */
5         . = 0x10000;
6
7         .startup : { * (.startup); }
8         .text : { * (.text); }
9         .rodata : { * (.rodata); }
10         .data : { * (.data); }
11
12         .dummy ALIGN(4): { LONG(42); }
13
14         .bss ALIGN(4): {
15                 _bss_start = .;
16                 * (.bss);
17                 . = ALIGN(4);
18                 _bss_end = .;
19         }
20         _bss_size = SIZEOF(.bss);
21
22         _mem_start = .;
23 }