mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
21 lines
281 B
Plaintext
21 lines
281 B
Plaintext
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x80000;
|
||
|
.text : { *(.text) }
|
||
|
|
||
|
. = ALIGN (0x400);
|
||
|
.merge1 : { *(.merge1) }
|
||
|
|
||
|
. = ALIGN (0x400);
|
||
|
.merge2 : { *(.merge2) }
|
||
|
|
||
|
. = ALIGN (0x400);
|
||
|
.merge3 : { *(.merge3) }
|
||
|
|
||
|
. = ALIGN (0x400);
|
||
|
.data : { *(.data) }
|
||
|
|
||
|
/DISCARD/ : { *(*) }
|
||
|
}
|