mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
|
ENTRY(__start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
. = 0x0400000;
|
||
|
.text : { *(.text) }
|
||
|
. = 0x0800000;
|
||
|
.rodata : { *(.rodata.*) }
|
||
|
/DISCARD/ : { *(*) }
|
||
|
}
|