mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-22 02:31:08 +00:00
8 lines
119 B
Perl
8 lines
119 B
Perl
|
defined = addr1;
|
||
|
SECTIONS {
|
||
|
.text : { *(.text) }
|
||
|
. = ALIGN (0x1000);
|
||
|
.data : { *(.data) }
|
||
|
addr1 = ADDR (.data);
|
||
|
}
|