arch/m68k-amiga: Native Amiga support
[AROS.git] / arch / m68k-amiga / boot / linkerscript
blobb77424138f6c5195307adbcaee5c77da1295e671
1 MEMORY 
3   rom (rx)  : org = 0x00f80000 , l = 512K
4   ram (rwx) : org = 0x00000000 , l = 128K
7 SECTIONS 
9   .sysbase                    : { . = 4; SysBase = .; . += 4; } >ram
10   .stack                      : { _stack = .;
11                                   . = 0x10000 - 8;
12                                   _stack_end = .;      } >ram
13   .bss                        : { _bss = .;
14                                   *(.bss)
15                                   _bss_end = .;        } >ram
16   /* This should cause angry complaints if .data exists
17    * We don't want .data, and we don't need it.
18    */
19   .data                       : { *(.data)             } >ram
20   .text 0x00f80000            : { *(.text)             } >rom =0x0000
21   .rodata                     : { *(.rodata .rodata.*) } >rom =0x0000