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