summaryrefslogtreecommitdiff
path: root/src/stem/link.ld
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2010-02-06 20:51:56 +0100
committerAlexis211 <alexis211@gmail.com>2010-02-06 20:51:56 +0100
commit6a52d123672b7a00af6e22b4c138205be2042a94 (patch)
treecd9b0a13490159369a66c850850596fd4b418139 /src/stem/link.ld
parent3558f18daf50281ee1cd68cca96cd967dbac04ba (diff)
downloadTCE-6a52d123672b7a00af6e22b4c138205be2042a94.tar.gz
TCE-6a52d123672b7a00af6e22b4c138205be2042a94.zip
Reorganisation
Diffstat (limited to 'src/stem/link.ld')
-rw-r--r--src/stem/link.ld32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/stem/link.ld b/src/stem/link.ld
deleted file mode 100644
index 1ce17cf..0000000
--- a/src/stem/link.ld
+++ /dev/null
@@ -1,32 +0,0 @@
-ENTRY (loader)
-
-SECTIONS{
- . = 0x00100000;
-
- .setup : {
- *(.setup)
- }
-
- . += 0xE0000000;
-
- .text : AT(ADDR(.text) - 0xE0000000) {
- *(.text)
- }
-
- .rodata ALIGN (0x1000) : AT(ADDR(.rodata) - 0xE0000000) {
- *(.rodata)
- }
-
- .data ALIGN (0x1000) : AT(ADDR(.data) - 0xE0000000) {
- *(.data)
- }
-
- .bss : AT(ADDR(.bss) - 0xE0000000) {
- sbss = .;
- *(COMMON)
- *(.bss)
- ebss = .;
- }
-
- end = .; _end = .; __end = .;
-}