]> Joshua Wise's Git repositories - netwatch.git/blob - aseg/aseg.lds
83afbaeed1ef08323f9dc91b26df594a4dc2de54
[netwatch.git] / aseg / aseg.lds
1 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2 OUTPUT_ARCH(i386)
3 SECTIONS
4 {
5         . = 0xA8000;
6         .aseg : {
7                 _start = .;
8                 aseg.o
9                 LONG(_stacktop);
10                 LONG(smi_entry);
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 = .;
26         }
27
28         . = 0x10000;
29         .info : {
30                 _start = .;
31                 LONG(0x5754454E);
32                 LONG(__firstrun_start);
33         }
34 }
This page took 0.017282 seconds and 2 git commands to generate.