]> Joshua Wise's Git repositories - netwatch.git/blame - aseg-paging/aseg.lds
some more haxing
[netwatch.git] / aseg-paging / aseg.lds
CommitLineData
9e2a82e4
JP
1OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
2OUTPUT_ARCH(i386)
3
4SECTIONS
5{
6 . = 0xA8000;
7
8 .aseg : {
9 _start = .;
10 entry.o
11 LONG(0xA9FF0);
12 LONG(c_entry);
13 entry_initialized = .;
14 LONG(0);
15 pagingstub-asm.o
16 pagingstub.o
17 _aseg_end = .;
18 }
19
20 . = 0x200000;
21
22 .maincode : {
23 *(.data);
24 *(.rodata);
25 *(.text);
26 _bss = .;
27 *(.bss);
28 _bssend = .;
29 _end = .;
30 }
31
32 .stack : {
33 . = . + 0x10000;
34 . = ALIGN(0x10);
35 _stacktop = .;
36 }
37
38 . = 0x10000;
39 .info : {
40 _start = .;
41 LONG(0x5754454E);
722e5aea 42 LONG(__firstrun_stub);
9e2a82e4
JP
43 }
44
45}
This page took 0.052573 seconds and 4 git commands to generate.