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, 23 insertions, 0 deletions
diff --git a/www/example/app.lds b/www/example/app.lds
new file mode 100644
index 0000000000..03bd1b2b54
--- /dev/null
+++ b/www/example/app.lds
@@ -0,0 +1,23 @@
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 }