summaryrefslogtreecommitdiff
path: root/Kernel/linker.ld
blob: ef808a575c2fb5e0f832d77cdfb7818fe2fb14aa (plain)
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
ENTRY(start)

SECTIONS
{
	. = 0x10000;

	.text BLOCK(4K) : ALIGN(4K)
	{
        Boot/boot.ao
		*(.multiboot)
		*(.text)
	}

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

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

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