summaryrefslogtreecommitdiff
path: root/www/example/app.lds
diff options
context:
space:
mode:
Diffstat (limited to 'www/example/app.lds')
-rw-r--r--www/example/app.lds23
1 files changed, 0 insertions, 23 deletions
diff --git a/www/example/app.lds b/www/example/app.lds
deleted file mode 100644
index 03bd1b2b54..0000000000
--- a/www/example/app.lds
+++ /dev/null
@@ -1,23 +0,0 @@
1ENTRY(_start)
2OUTPUT_FORMAT(elf32-sh)
3SECTIONS
4{
5 .vectors 0x09000000 :
6 {
7 *(.vectors);
8 . = ALIGN(0x200);
9 *(.text.start)
10 *(.text)
11 *(.rodata)
12 }
13
14 .bss :
15 {
16 _stack = . + 0x1000;
17 }
18
19 .pad 0x0900C800 :
20 {
21 LONG(0);
22 }
23 }