summaryrefslogtreecommitdiffstats
path: root/arch/x86/boot/linker.ld
blob: 5e8dfd6e648fd744853727a499e9f613948a8840 (plain)
1
2
3
4
5
6
7
8
9
10
OUTPUT_FORMAT("binary")
OUTPUT_ARCH(i386)
ENTRY(_start)

SECTIONS
{
	/* BIOS likes always to load the boot sector to the address 0x7c00,
	where it is sure will not be occupied by important routines. */
	. = 0x7c00;
}