mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
b5c37946cc
This reverts commit 675b9d612c
.
See https://sourceware.org/pipermail/binutils/2023-August/128761.html.
12 lines
151 B
Raku
12 lines
151 B
Raku
SECTIONS
|
|
{
|
|
.text 0: { *(.text .pr) }
|
|
.data 0x200:
|
|
{
|
|
*(.data)
|
|
ASSERT (. < 0x400, oops);
|
|
}
|
|
.bss : { *(.bss) }
|
|
/DISCARD/ : { *(*) }
|
|
}
|