Project

General

Profile

Statistics
| Branch: | Revision:

root / prex-0.9.0 / usr / arch / x86 / user.ld @ 03e9c04a

History | View | Annotate | Download (351 Bytes)

1 03e9c04a Brad Neuman
OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2
OUTPUT_ARCH(i386)
3
ENTRY(_start)
4
SECTIONS
5
{
6
	. = 0x10000 + SIZEOF_HEADERS ;
7
8
	.text : {
9
		*(.text)
10
	} = 0x9090
11
12
	. = ALIGN(32);
13
14
	.rodata : {
15
		*(.rodata)
16
		*(.rodata.*)
17
	}
18
19
	. = ALIGN (0x1000);
20
	.data : {
21
		*(.data)
22
	}
23
24
	.bss . : {
25
		*(.bss)
26
		*(COMMON)
27
	}
28
29
	/DISCARD/ : { *(.comment .note) }
30
}