mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
d3cfff61d7
* ld-elf/seg.d: New. * ld-elf/seg.s: New.
17 lines
187 B
Raku
17 lines
187 B
Raku
|
|
SECTIONS
|
|
{
|
|
reset - 4 :
|
|
{
|
|
*(reset)
|
|
}
|
|
boot - 0x1000 :
|
|
{
|
|
*(boot)
|
|
} = 0xffff
|
|
. = + SIZEOF_HEADERS;
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) }
|
|
}
|