summaryrefslogtreecommitdiff
path: root/utils/atj2137/adfuload/test_binary/lcm/test.lds
diff options
context:
space:
mode:
Diffstat (limited to 'utils/atj2137/adfuload/test_binary/lcm/test.lds')
-rw-r--r--utils/atj2137/adfuload/test_binary/lcm/test.lds51
1 files changed, 51 insertions, 0 deletions
diff --git a/utils/atj2137/adfuload/test_binary/lcm/test.lds b/utils/atj2137/adfuload/test_binary/lcm/test.lds
new file mode 100644
index 0000000000..f9007d4bba
--- /dev/null
+++ b/utils/atj2137/adfuload/test_binary/lcm/test.lds
@@ -0,0 +1,51 @@
1OUTPUT_ARCH(mips)
2ENTRY(main)
3
4SECTIONS
5{
6
7
8.text 0xa0000000 :
9 {
10 relocstart = .;
11 *(.init.text*)
12 *(.text*)
13 }
14
15 . = ALIGN(0x1000);
16 _irqbase = .;
17
18.exception_handlers :
19 {
20 . += 0x200;
21 *(.irq_vector*)
22 }
23
24.data :
25 {
26 *(.rodata*)
27 *(.data*)
28 relocend = .;
29 }
30
31.bss :
32 {
33 bssbegin = .;
34 *(.sbss*)
35 *(.bss*)
36 *(COMMON)
37 *(.scommon*)
38 bssend = .;
39 }
40
41.stack (NOLOAD) :
42 {
43 stackbegin = .;
44 . += 0x2000;
45 stackend = .;
46 irqstackbegin = .;
47 . += 0x400;
48 irqstackend = .;
49 }
50
51}