From d6023a7adee17628e0ec4bad02e10199c1165bdb Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Wed, 27 Mar 2002 11:21:50 +0000 Subject: Initial version git-svn-id: svn://svn.rockbox.org/rockbox/trunk@34 a1c6a512-1295-4272-9138-f99709370657 --- www/example/app.lds | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 www/example/app.lds (limited to 'www/example/app.lds') 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); + } + } -- cgit v1.2.3