-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.x
More file actions
executable file
·54 lines (53 loc) · 786 Bytes
/
Copy pathscript.x
File metadata and controls
executable file
·54 lines (53 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
OUTPUT_FORMAT("ss-coff-little", "ss-coff-big",
"ss-coff-little")
SEARCH_DIR(/usr/local/3rdparty/simplescalar/sslittle-na-sstrix/lib);
/* ENTRY(__start) */
SECTIONS
{
/*. = 0x400000 + SIZEOF_HEADERS;*/
. = 0x00;
.init : {
KEEP(*(.init))
} = 0
.text : {
_ftext = . ;
*(.init)
eprol = .;
*(.text)
*(.fini)
etext = .;
_etext = .;
}
/* . = 0x10000000; */
.rdata : {
*(.rdata)
}
_fdata = .;
.data : {
*(.data)
CONSTRUCTORS
}
_gp = ALIGN(16) + 0x8000;
.lit8 : {
*(.lit8)
}
.lit4 : {
*(.lit4)
}
.sdata : {
*(.sdata)
}
edata = .;
_edata = .;
_fbss = .;
.sbss : {
*(.sbss)
*(.scommon)
}
.bss : {
*(.bss)
*(COMMON)
}
end = .;
_end = .;
}