mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-20 13:21:15 +01:00
11 lines
168 B
Perl
11 lines
168 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
. = 0x1000 + SIZEOF_HEADERS;
|
||
|
.text ALIGN (0x20) : { *(.text) }
|
||
|
.data 0x2000 : {
|
||
|
*(.data)
|
||
|
LONG (SIZEOF (.text))
|
||
|
LONG (SIZEOF (.data))
|
||
|
}
|
||
|
}
|