mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
18 lines
243 B
Perl
18 lines
243 B
Perl
SECTIONS {
|
|
.text :
|
|
{
|
|
text_start = .;
|
|
tmpdir/sizeof.o
|
|
text_end = .;
|
|
}
|
|
.data :
|
|
{
|
|
data_start = .;
|
|
. = . + SIZEOF(.text);
|
|
data_end = .;
|
|
}
|
|
}
|
|
|
|
sizeof_text = SIZEOF(.text);
|
|
sizeof_data = SIZEOF(.data);
|