diff options
author | Marti Bolivar <mbolivar@leaflabs.com> | 2011-02-08 22:38:21 -0500 |
---|---|---|
committer | Marti Bolivar <mbolivar@leaflabs.com> | 2011-02-10 17:50:26 -0500 |
commit | 05bb1e666f9542d5636645cf69df5d3741f2bc2e (patch) | |
tree | 2f3ab188df737fbbf9498dec869a3105ff7d50a8 /support/ld/maple_native | |
parent | b84da9db8f61fcc79c9594cabb97ebc5142eb267 (diff) | |
download | librambutan-05bb1e666f9542d5636645cf69df5d3741f2bc2e.tar.gz librambutan-05bb1e666f9542d5636645cf69df5d3741f2bc2e.zip |
Function examples/test-session.cpp on Native
Diffstat (limited to 'support/ld/maple_native')
-rw-r--r-- | support/ld/maple_native/flash.ld | 2 | ||||
-rw-r--r-- | support/ld/maple_native/jtag.ld | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/support/ld/maple_native/flash.ld b/support/ld/maple_native/flash.ld index 7e1e453..4e820d2 100644 --- a/support/ld/maple_native/flash.ld +++ b/support/ld/maple_native/flash.ld @@ -26,7 +26,7 @@ MEMORY
{
ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 61K
- rom (rx) : ORIGIN = 0x08005000, LENGTH = 500K
+ rom (rx) : ORIGIN = 0x08005000, LENGTH = 492K
}
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
diff --git a/support/ld/maple_native/jtag.ld b/support/ld/maple_native/jtag.ld index 85aae53..90a0a3f 100644 --- a/support/ld/maple_native/jtag.ld +++ b/support/ld/maple_native/jtag.ld @@ -8,8 +8,8 @@ /* Define memory spaces. */
MEMORY
{
- ram (rwx) : ORIGIN = 0x20000C00, LENGTH = 61K
- rom (rx) : ORIGIN = 0x08005000, LENGTH = 500K
+ ram (rwx) : ORIGIN = 0x20000000, LENGTH = 64K
+ rom (rx) : ORIGIN = 0x08000000, LENGTH = 512K
}
OUTPUT_FORMAT ("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
|