mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +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);
|