mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
12 lines
126 B
Perl
12 lines
126 B
Perl
|
SECTIONS {
|
||
|
.text : {
|
||
|
*(.text)
|
||
|
}
|
||
|
. = ALIGN (0x1000);
|
||
|
.data : {
|
||
|
_data_start = .;
|
||
|
*(.data)
|
||
|
}
|
||
|
/DISCARD/ : { *(.*) }
|
||
|
}
|