diff options
author | Perry Hung <iperry@gmail.com> | 2010-09-16 21:46:36 -0400 |
---|---|---|
committer | Perry Hung <iperry@gmail.com> | 2010-09-16 21:46:36 -0400 |
commit | f37e717c8a5b8d5aef2c7ff4ac2e853ed7a38d91 (patch) | |
tree | 3565590d5fd53acc4e93c9ee7df29ab7494c99ee /support/ld/maple | |
parent | 9180233b971aecb621ae54307c72ef074773640f (diff) | |
download | librambutan-f37e717c8a5b8d5aef2c7ff4ac2e853ed7a38d91.tar.gz librambutan-f37e717c8a5b8d5aef2c7ff4ac2e853ed7a38d91.zip |
Fix maple linker memory map for jtag target
Diffstat (limited to 'support/ld/maple')
-rw-r--r-- | support/ld/maple/jtag.ld | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/ld/maple/jtag.ld b/support/ld/maple/jtag.ld index 8c5ff49..435e3f0 100644 --- a/support/ld/maple/jtag.ld +++ b/support/ld/maple/jtag.ld @@ -8,8 +8,8 @@ /* Define memory spaces. */
MEMORY
{
- ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 17K
- rom (rx) : ORIGIN = 0x08005000, LENGTH = 108K
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K
+ rom (rx) : ORIGIN = 0x08000000, LENGTH = 128K
}
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
|