aboutsummaryrefslogtreecommitdiffstats
path: root/link.ld
blob: 582fb5fadb1941961b1e3b0a5fdef561eeb7dc7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SECTIONS {
	. = 0x0000;
	.text : {
		* (.text);
		. = ALIGN(8);
		* (.rodata);
	}
	. = ALIGN(8);
	.data : {
		* (.data);
		. = ALIGN(8);
		* (.bss);
	}
}