aboutsummaryrefslogtreecommitdiff
path: root/apps/link.ld
blob: e28bb347ddac30dc5028235fc0dec43073630dbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
OUTPUT_FORMAT("elf32-i386")
OUTPUT_ARCH(i386)
ENTRY(_start)

SECTIONS
{
	. = 0x40000000;

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

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

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

	. = ALIGN(4096);
}