summaryrefslogtreecommitdiffhomepage
path: root/example/mb2/link.ld
blob: 0d79ef4cf72e60cbe3e0af6eb68987335618b794 (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
30
31
32
33
/* MIT License, Copyright (c) 2021 Marvin Borner */

OUTPUT_ARCH(i386)
ENTRY(boot_entry)
phys = 0x00100000;

SECTIONS
{
	. = phys;

	.text BLOCK(4K) : ALIGN(4K)
	{
		*(.text*)
	}

	.rodata BLOCK(4K) : ALIGN(4K)
	{
		*(.rodata*)
	}

	.data BLOCK(4K) : ALIGN(4K)
	{
		*(.data*)
	}

	.bss BLOCK(4K) : ALIGN(4K)
	{
		*(COMMON)
		*(.bss)
	}

	end = .;
}