summaryrefslogtreecommitdiffstats
path: root/scripts/vivado/firmware.lds
blob: 970000ae54b16a360c7ae6be9464351f84cc3b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
SECTIONS {
	.memory : {
		. = 0x000000;
		*(.init);
		*(.text);
		*(*);
		. = ALIGN(4);
		end = .;
	}
}