summaryrefslogtreecommitdiffstats
path: root/nuttx/configs/kwikstik-k40/ostest/ld.script
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/configs/kwikstik-k40/ostest/ld.script')
-rwxr-xr-xnuttx/configs/kwikstik-k40/ostest/ld.script11
1 files changed, 4 insertions, 7 deletions
diff --git a/nuttx/configs/kwikstik-k40/ostest/ld.script b/nuttx/configs/kwikstik-k40/ostest/ld.script
index 21a3f11fd3..edadb38a02 100755
--- a/nuttx/configs/kwikstik-k40/ostest/ld.script
+++ b/nuttx/configs/kwikstik-k40/ostest/ld.script
@@ -33,17 +33,14 @@
*
****************************************************************************/
-/* The K40X256VLQ100 has 256Kb of FLASH beginning at address 0x0800:0000 and
- * 256Kb of FlexMemory beginning at address 0x2000:0000. When booting from FLASH,
- * FLASH memory is aliased to address 0x0000:0000 where the code expects to
- * begin execution by jumping to the entry point in the 0x0800:0000 address
- * range.
+/* The K40X256VLQ100 has 256Kb of FLASH beginning at address 0x0000:0000 and
+ * 32Kb of SRAM beginning at address 0x1800:0000.
*/
MEMORY
{
- flash (rx) : ORIGIN = 0x08000000, LENGTH = 256K
- sram (rwx) : ORIGIN = 0x20000000, LENGTH = 256K
+ flash (rx) : ORIGIN = 0x00000000, LENGTH = 256K
+ sram (rwx) : ORIGIN = 0x18000000, LENGTH = 32K
}
OUTPUT_ARCH(arm)