Make the assembler generate an error if there is an attempt to define a section with...
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / rgn-at1.t
CommitLineData
113e6845
NS
1/* Memory region at test, >AT should propagate by default */
2
3MEMORY {
4 ram : ORIGIN = 0x10000, LENGTH = 0x100
5 rom : ORIGIN = 0x20000, LENGTH = 0x200
6}
7_start = 0x1000;
8SECTIONS {
9 .text : { *(.text) } >ram AT>rom
10 .data : { *(.data) } >ram /* default AT>rom */
11 .bss : { *(.bss) } >ram
12 /DISCARD/ : { *(*) }
13}
This page took 0.509801 seconds and 4 git commands to generate.