mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
12 lines
185 B
Perl
12 lines
185 B
Perl
|
SECTIONS
|
||
|
{
|
||
|
.text 0x00000000: { *(.text) }
|
||
|
.data ALIGN(0x1000) + (. & (0x1000 - 1)):
|
||
|
{
|
||
|
PROVIDE (__data_start = .);
|
||
|
*(.data)
|
||
|
}
|
||
|
__data_end = .;
|
||
|
/DISCARD/ : { *(.*) }
|
||
|
}
|