aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/linker.ld
blob: d79391274af7060deb83e91723b2d515bfd8e64b (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 : {
		*(.text)
		. = ALIGN(4096);
	}

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

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