summaryrefslogtreecommitdiffstats
path: root/bsps/sparc/leon3/start/linkcmds.gr740
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/sparc/leon3/start/linkcmds.gr740')
-rw-r--r--bsps/sparc/leon3/start/linkcmds.gr74021
1 files changed, 21 insertions, 0 deletions
diff --git a/bsps/sparc/leon3/start/linkcmds.gr740 b/bsps/sparc/leon3/start/linkcmds.gr740
new file mode 100644
index 0000000000..c16fd7fd7f
--- /dev/null
+++ b/bsps/sparc/leon3/start/linkcmds.gr740
@@ -0,0 +1,21 @@
+/* Default values, can be overridden */
+
+_PROM_SIZE = DEFINED (_PROM_SIZE) ? _PROM_SIZE : 0;
+
+_RAM_SIZE = DEFINED (_RAM_SIZE) ? _RAM_SIZE : 64M;
+
+/* these are the maximum values */
+
+MEMORY
+{
+ rom : ORIGIN = 0xC0000000, LENGTH = 256M
+ ram : ORIGIN = 0x00000000, LENGTH = 2048M
+ sram : ORIGIN = 0xD0000000, LENGTH = 256M
+}
+
+_PROM_START = ORIGIN (rom);
+_RAM_START = ORIGIN (ram);
+
+ENTRY(start)
+
+INCLUDE linkcmds.base