mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
12 lines
125 B
Perl
12 lines
125 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
. = 0xc000;
|
||
|
.text :
|
||
|
{
|
||
|
_text = .;
|
||
|
*(.text)
|
||
|
}
|
||
|
_end = .;
|
||
|
}
|
||
|
ASSERT (_end - _text <= 0x100, "fail");
|