summaryrefslogtreecommitdiff
path: root/utils/atj2137/adfuload/test_binary/lcm/test.lds
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2014-10-18 20:16:10 +0200
committerMarcin Bukat <marcin.bukat@gmail.com>2014-10-18 20:18:01 +0200
commitc626fe70041bf5d21b27d0f92a0790df07d5d9f6 (patch)
tree29bb208a96c731843ba3be97cd783929677907f3 /utils/atj2137/adfuload/test_binary/lcm/test.lds
parentfe519c7e4d4022fd692c90d507f0917a02547ad8 (diff)
downloadrockbox-c626fe70041bf5d21b27d0f92a0790df07d5d9f6.tar.gz
rockbox-c626fe70041bf5d21b27d0f92a0790df07d5d9f6.zip
atj213x: e100/150 lcd test binary
Change-Id: I3f9fa21dcb33d1cd3081d0c995adfb44e085dd7a
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}