aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/linker.ld
blob: 7c2941f88a44c4a8a85598c61f5854d3d179b699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ENTRY(_start)

SECTIONS {
	.text 0x40000000 : {
		*(.text)
		. = ALIGN(4096);
	}

	.data :	{
		*(.data)
		*(.rodata)
		. = ALIGN(4096);
	}

	.bss : {
		*(.bss)
		. = ALIGN(4096);
	}
}