aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/sections.lds
blob: 5e6e40c7a2bc6075b9f7001a4c1c2ef75ef1d80a (plain)
1
2
3
4
5
6
7
8
9
SECTIONS {
	.memory : {
		. = 0x000000;
		start*(.text);
		*(.text);
		*(*);
		end = .;
	}
}