aboutsummaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2010-08-05 21:47:12 -0400
committerbnewbold <bnewbold@robocracy.org>2010-08-05 21:47:22 -0400
commit0f55cc0d89dc018aa1a2e7ad1c926889f98ec26d (patch)
treeda21b7edba9b779591b56b6c08f0012ed2cbe31b /support
parentccd9833f264d6e20a9f2c81baebe162f07eec996 (diff)
downloadlibrambutan-0f55cc0d89dc018aa1a2e7ad1c926889f98ec26d.tar.gz
librambutan-0f55cc0d89dc018aa1a2e7ad1c926889f98ec26d.zip
partial progress on FSMC for SRAM
Diffstat (limited to 'support')
-rw-r--r--support/ld/flash.ld4
-rw-r--r--support/ld/ram.ld2
2 files changed, 3 insertions, 3 deletions
diff --git a/support/ld/flash.ld b/support/ld/flash.ld
index b66bdef..473f5a1 100644
--- a/support/ld/flash.ld
+++ b/support/ld/flash.ld
@@ -25,8 +25,8 @@
/* Define memory spaces. */
MEMORY
{
- ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 17K
- rom (rx) : ORIGIN = 0x08005000, LENGTH = 108K
+ ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 61K
+ rom (rx) : ORIGIN = 0x08005000, LENGTH = 500K
}
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
diff --git a/support/ld/ram.ld b/support/ld/ram.ld
index 872d6f2..d2c05c0 100644
--- a/support/ld/ram.ld
+++ b/support/ld/ram.ld
@@ -26,7 +26,7 @@
MEMORY
{
ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 61K
- rom (rx) : ORIGIN = 0x08000000, LENGTH = 512K
+ rom (rx) : ORIGIN = 0x08005000, LENGTH = 512K
}