mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
10 lines
143 B
Perl
10 lines
143 B
Perl
|
SECTIONS {
|
||
|
.text : {
|
||
|
_text = .;
|
||
|
*(.text)
|
||
|
}
|
||
|
_end = .;
|
||
|
/DISCARD/ : { *(.*) }
|
||
|
}
|
||
|
. = ASSERT((_end - _text <= (512 * 1024 * 1024)), "foo");
|