mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
14 lines
206 B
Plaintext
14 lines
206 B
Plaintext
OUTPUT_ARCH(mmix)
|
|
ENTRY(Main)
|
|
SECTIONS
|
|
{
|
|
.text 0x1000000000000000 :
|
|
{ *(.text); Main = _start; }
|
|
|
|
.data 0x2000000000000000 :
|
|
{ *(.data); }
|
|
|
|
.MMIX.reg_contents :
|
|
{ *(.MMIX.reg_contents); }
|
|
}
|