aboutsummaryrefslogtreecommitdiff
path: root/src/boot/loader_stage1_linker.ld
blob: 711fcbfc13cbb43aba5b0c3aad974770807fa70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ENTRY(_boot)
 
SECTIONS
{
	/* see linker.ld for details */
	. = 0x2000000;

	__start = .;
	loader_stage1 :
	{
		KEEP(loader_stage1.o)
	}
	__end = .;

    _stack_top = 0x8000;
}