mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
28 lines
286 B
Python
Executable File
28 lines
286 B
Python
Executable File
OUTPUT_FORMAT("coff-a29k-big")
|
|
ENTRY(start)
|
|
|
|
SECTIONS {
|
|
.text 0x8000 :
|
|
{
|
|
*(.text);
|
|
_etext = . ;
|
|
}
|
|
.data 0x80002000 :
|
|
{
|
|
*(.data);
|
|
*(.mstack);
|
|
*(.shbss);
|
|
*(.rstack);
|
|
*(.mstack);
|
|
CONSTRUCTORS
|
|
}
|
|
.bss . :
|
|
{
|
|
|
|
[COMMON]
|
|
*(.bss);
|
|
_end = .;
|
|
}
|
|
|
|
}
|