mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-28 14:31:50 +00:00
23 lines
285 B
Perl
23 lines
285 B
Perl
SECTIONS {
|
|
.text :
|
|
{
|
|
text_start = .;
|
|
tmpdir/sizeof.o
|
|
text_end = .;
|
|
}
|
|
.data :
|
|
{
|
|
data_start = .;
|
|
. = . + SIZEOF(.text);
|
|
data_end = .;
|
|
}
|
|
.bss :
|
|
{
|
|
. = 8;
|
|
*(.bss)
|
|
}
|
|
}
|
|
|
|
sizeof_text = SIZEOF(.text);
|
|
sizeof_data = SIZEOF(.data);
|