mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
|
OUTPUT_ARCH(mmix)
|
||
|
ENTRY(Main)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text 0x101 : /* Note the misaligned address; must trig a linker error. */
|
||
|
{ *(.text*); Main = _start; }
|
||
|
|
||
|
.MMIX.reg_contents :
|
||
|
{ *(.MMIX.reg_contents.linker_allocated); *(.MMIX.reg_contents); }
|
||
|
}
|