ea6c5ce90d
* ld-scripts/defined5.s: Use .text for "defined" section. * ld-scripts/defined5.t: Adjust.
7 lines
119 B
Raku
7 lines
119 B
Raku
defined = addr1;
|
|
SECTIONS {
|
|
.text : { *(.text) }
|
|
. = ALIGN (0x1000);
|
|
.data : { *(.data) }
|
|
addr1 = ADDR (.data);
|
|
}
|