1 /* Memory region at test, >AT should propagate by default */
4 ram : ORIGIN = 0x10000, LENGTH = 0x100
5 rom : ORIGIN = 0x20000, LENGTH = 0x200
9 .text : { *(.text) } >ram AT>rom
10 .data : { *(.data) } >ram
11 .bss : { *(.bss) } >ram
12 .trail : { LONG(5) } >ram