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