X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Fcortex-m3%2Fscripts%2Flm3s8962_ram.ld;h=61e673d0ffc252a10f59ba38165c59bf40c609ec;hb=8b2212317e8a6f509aab193734bc87e4a28f58ca;hp=87d9a30978bfdebd2f0fecb075cc4002efd90b0a;hpb=b6cf7ebec417a6433b757b2e6e92668194c22a55;p=bertos.git diff --git a/bertos/cpu/cortex-m3/scripts/lm3s8962_ram.ld b/bertos/cpu/cortex-m3/scripts/lm3s8962_ram.ld index 87d9a309..61e673d0 100644 --- a/bertos/cpu/cortex-m3/scripts/lm3s8962_ram.ld +++ b/bertos/cpu/cortex-m3/scripts/lm3s8962_ram.ld @@ -30,9 +30,26 @@ * * --> * - * \brief Script for Luminary Micro LM3S8968 Cortex M3 family processors. + * \brief Script for Luminary Micro LM3S8962 Cortex M3 family processors. * * \author Andrea Righi */ -INCLUDE bertos/cpu/cortex-m3/scripts/lm3s1968_ram.ld + +/* + * Define stack size here + * Variable used in the cortex-m3_ram.ld file + */ +STACK_SIZE = 0x1000; + +/* + * Define memory configuration for LM3S8962 board + */ +MEMORY +{ + rom(rx) : org = 0x00000000, len = 256k + ram(rwx) : org = 0x20000000, len = 64k +} + +INCLUDE "bertos/cpu/cortex-m3/scripts/cortex-m3_ram.ld" +