summaryrefslogtreecommitdiffstats
path: root/src/target_dsp/calypso/dsp_dump.lds
diff options
context:
space:
mode:
Diffstat (limited to 'src/target_dsp/calypso/dsp_dump.lds')
-rw-r--r--src/target_dsp/calypso/dsp_dump.lds22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/target_dsp/calypso/dsp_dump.lds b/src/target_dsp/calypso/dsp_dump.lds
new file mode 100644
index 00000000..56633026
--- /dev/null
+++ b/src/target_dsp/calypso/dsp_dump.lds
@@ -0,0 +1,22 @@
+OUTPUT_FORMAT("coff1-c54x")
+OUTPUT_ARCH("")
+MEMORY
+{
+ apiram (RWXI) : ORIGIN = 0x0800, LENGTH = 0x2000
+}
+SECTIONS
+{
+ . = 0x0800;
+
+ .apiram :
+ {
+ PROVIDE(_api_ram = .);
+ *(.apiram)
+ } > apiram
+
+ .text :
+ {
+ *(.text)
+ } > apiram
+}
+