mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
18 lines
156 B
Perl
18 lines
156 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
. = 0x2000 ;
|
||
|
|
||
|
_start = .;
|
||
|
|
||
|
HEAP_SIZE = 0x100;
|
||
|
|
||
|
.heap : {
|
||
|
. = HEAP_SIZE;
|
||
|
. = ALIGN(4);
|
||
|
}
|
||
|
|
||
|
_end = .;
|
||
|
|
||
|
/DISCARD/ : { *(*) }
|
||
|
}
|