summaryrefslogtreecommitdiff
path: root/stage3.ld
blob: da72329ab00d0893efd1eeb66e20cc7d5443309c (plain)
1
2
3
4
5
6
7
8
9
10
OUTPUT(stage3.out)
OUTPUT_FORMAT(binary)
ENTRY(kmain)

SECTIONS
{
	. = 0x9000;
	.text : { *(.text) }
	.data : { *(.bss .data .rodata) }
}