mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
14 lines
413 B
Plaintext
14 lines
413 B
Plaintext
/* Simple script for testing call26 relaxation via linker stubs.
|
|
In this case, input sections text0 and text1 are placed in the
|
|
same output section in the same 256MB segment, so they can share stubs. */
|
|
|
|
OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")
|
|
OUTPUT_ARCH(nios2)
|
|
ENTRY(_start)
|
|
SECTIONS
|
|
{
|
|
_start = .;
|
|
text0 0 : { *(text0) *(text1) }
|
|
text2 0x40000000 : { *(text2) }
|
|
}
|