1/* Simple script for testing relaxation */
2
3OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")
4OUTPUT_ARCH(nios2)
5ENTRY(_start)
6SECTIONS
7{
8 _start = .;
9 text1 0 : { *(text1) }
10 text2 0x08000000 : { *(text2) }
11}
12