summaryrefslogtreecommitdiffstats
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 @@
+ENTRY(_start)
+OUTPUT_FORMAT(elf32-sh)
+SECTIONS
+{
+ .vectors 0x09000000 :
+ {
+ *(.vectors);
+ . = ALIGN(0x200);
+ *(.text.start)
+ *(.text)
+ *(.rodata)
+ }
+
+ .bss :
+ {
+ _stack = . + 0x1000;
+ }
+
+ .pad 0x0900C800 :
+ {
+ LONG(0);
+ }
+ }