Retro68/binutils/ld/testsuite/ld-scripts/empty-address-3c.t
Wolfgang Thaller f485e125c4 binutils 2.39
2022-10-27 20:45:45 +02:00

13 lines
200 B
Raku

SECTIONS
{
.text 0x00000000: { *(.text .pr) }
.data ALIGN(0x1000) + (. & (0x1000 - 1)):
{
__data_start = .;
*(.data)
}
__data_end = .;
.bss : { *(.bss) }
/DISCARD/ : { *(.*) }
}