binutils-gdb/ld/testsuite/ld-scripts/script.t
Ian Lance Taylor d2c0200413 * VMS does not permits `.' in directory names. Renamed
ld.bootstrap to ld-bootstrap, ld.cdtest to ld-cdtest, and
	ld.scripts to ld-scripts.
1994-09-29 16:39:01 +00:00

15 lines
168 B
Perl

SECTIONS
{
.text 0x100 : {
text_start = .;
*(.text)
text_end = .;
}
. = 0x1000;
.data : {
data_start = .;
*(.data)
data_end = .;
}
}