summaryrefslogtreecommitdiffstats
path: root/Src/osmolib/src/target_dsp/calypso/dsp_dump.lds
diff options
context:
space:
mode:
authorTom2012-01-11 17:00:30 +0100
committerTom2012-01-11 17:00:30 +0100
commit9fcc469afa01fc9ea42e4cbb96c5b195c5bcd371 (patch)
tree89d4015f6a34119069665d74a67d871fcd124509 /Src/osmolib/src/target_dsp/calypso/dsp_dump.lds
parentrefresh (diff)
downloadimsi-catcher-detection-9fcc469afa01fc9ea42e4cbb96c5b195c5bcd371.tar.gz
imsi-catcher-detection-9fcc469afa01fc9ea42e4cbb96c5b195c5bcd371.tar.xz
imsi-catcher-detection-9fcc469afa01fc9ea42e4cbb96c5b195c5bcd371.zip
all reupped
Diffstat (limited to 'Src/osmolib/src/target_dsp/calypso/dsp_dump.lds')
-rw-r--r--Src/osmolib/src/target_dsp/calypso/dsp_dump.lds22
1 files changed, 22 insertions, 0 deletions
diff --git a/Src/osmolib/src/target_dsp/calypso/dsp_dump.lds b/Src/osmolib/src/target_dsp/calypso/dsp_dump.lds
new file mode 100644
index 0000000..5663302
--- /dev/null
+++ b/Src/osmolib/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
+}
+