aboutsummaryrefslogtreecommitdiffstats
path: root/picosoc/sections.lds
blob: 6c59cb856f7e721462f25b0eb965d305f04cb257 (plain)
1
2
3
4
5
6
7
8
9
SECTIONS {
	.memory : {
		sram = 0;
		. = 0x100000;
		start*(.text);
		*(.text);
		*(*);
	}
}