summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/archos.lds
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/archos.lds')
-rw-r--r--apps/plugins/rockboy/archos.lds44
1 files changed, 0 insertions, 44 deletions
diff --git a/apps/plugins/rockboy/archos.lds b/apps/plugins/rockboy/archos.lds
deleted file mode 100644
index fcc3e6f922..0000000000
--- a/apps/plugins/rockboy/archos.lds
+++ /dev/null
@@ -1,44 +0,0 @@
1#include "config.h"
2
3/* linker script for rockboy as an overlay,
4 * only used/ necessary for SH-based archos targets */
5
6OUTPUT_FORMAT(elf32-sh)
7
8#define DRAMORIG 0x09000000
9#define PLUGIN_LENGTH PLUGIN_BUFFER_SIZE
10
11#define OVERLAY_LENGTH 0x68000
12#define OVERLAY_ORIGIN (DRAMORIG + (MEMORYSIZE * 0x100000) - PLUGIN_LENGTH - OVERLAY_LENGTH)
13
14MEMORY
15{
16 OVERLAY_RAM : ORIGIN = OVERLAY_ORIGIN, LENGTH = OVERLAY_LENGTH
17}
18
19SECTIONS
20{
21 .header : {
22 _plugin_start_addr = .;
23 KEEP(*(.header))
24 } > OVERLAY_RAM
25
26 .text : {
27 *(.text*)
28 } > OVERLAY_RAM
29
30 .rodata : {
31 *(.rodata*)
32 } > OVERLAY_RAM
33
34 .data : {
35 *(.data*)
36 } > OVERLAY_RAM
37
38 .bss : {
39 *(.bss*)
40 *(COMMON)
41 . = ALIGN(0x4);
42 _plugin_end_addr = .;
43 } > OVERLAY_RAM
44}