1defined = addr1;
2SECTIONS {
3	.text : { *(.text) }
4	. = ALIGN (0x1000);
5	.data : { *(.data) }
6	addr1  = ADDR (.data);
7}
8