summaryrefslogtreecommitdiff
path: root/flash/minimon/minimon.lds
diff options
context:
space:
mode:
Diffstat (limited to 'flash/minimon/minimon.lds')
-rw-r--r--flash/minimon/minimon.lds60
1 files changed, 0 insertions, 60 deletions
diff --git a/flash/minimon/minimon.lds b/flash/minimon/minimon.lds
deleted file mode 100644
index 14150b2123..0000000000
--- a/flash/minimon/minimon.lds
+++ /dev/null
@@ -1,60 +0,0 @@
1OUTPUT_FORMAT(elf32-sh)
2INPUT(minimon.o)
3
4MEMORY
5{
6 IRAM : ORIGIN = 0x0FFFF000, LENGTH = 0x500
7}
8
9SECTIONS
10{
11 .startvector :
12 {
13 *(.startvector)
14 . = ALIGN(0x4);
15 } > IRAM
16
17 .got :
18 {
19 *(.got)
20 } > IRAM
21
22 .got.plt :
23 {
24 *(.got.plt)
25 } > IRAM
26
27 .rela.got :
28 {
29 *(.rela.got)
30 } > IRAM
31
32 .text :
33 {
34 . = ALIGN(0x200);
35 *(.entry)
36 *(.text)
37 . = ALIGN(0x4);
38 } > IRAM
39
40 .data :
41 {
42 *(.data)
43 } > IRAM
44
45 .rodata :
46 {
47 *(.rodata)
48 . = ALIGN(0x4);
49 } > IRAM
50
51 .bss :
52 {
53 *(.bss)
54 } > IRAM
55
56 .stack :
57 {
58 *(.stack)
59 } > IRAM
60}