mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
12 lines
181 B
Plaintext
12 lines
181 B
Plaintext
OUTPUT_ARCH(mmix)
|
|
OUTPUT_FORMAT("mmo")
|
|
ENTRY(Main)
|
|
SECTIONS
|
|
{
|
|
.text 0x100 + sizeof_headers :
|
|
{ *(.text); Main = _start; }
|
|
|
|
.MMIX.reg_contents :
|
|
{ *(.MMIX.reg_contents); }
|
|
}
|