]> Joshua Wise's Git repositories - netwatch.git/blame - aseg/aseg.lds
initial checkin of lwip, enough to build
[netwatch.git] / aseg / aseg.lds
CommitLineData
f54c68a0
JW
1OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2OUTPUT_ARCH(i386)
3SECTIONS
4{
5 . = 0xA8000;
4bea7daf 6 .aseg : {
f54c68a0
JW
7 _start = .;
8 aseg.o
4bea7daf 9 LONG(_stacktop);
d71d9872 10 LONG(smi_entry);
4bea7daf
JW
11 *(.text);
12 *(.data);
13 *(.rodata);
14 }
15
16 . = 0x1FF80000;
17 .bss : {
18 _bss = .;
19 *(.bss);
20 _bssend = .;
21 }
22 .stack : {
23 . = . + 0x10000;
24 . = ALIGN(0x10);
25 _stacktop = .;
f54c68a0 26 }
e5d94488
JP
27
28 . = 0x10000;
29 .info : {
30 _start = .;
31 LONG(0x5754454E);
32 LONG(__firstrun_start);
33 }
f54c68a0 34}
This page took 0.024775 seconds and 4 git commands to generate.