X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Fcortex-m3%2Fscripts%2Flm3s8962_rom.ld;h=b79f5c01f43a4cc256484c4399bbff829b533bb0;hb=b7165529c0174f9bc5a1f4f51a4e405f202e48d5;hp=03a497f73f4bef9ee03e24d31bb6fcfa66116a82;hpb=b6cf7ebec417a6433b757b2e6e92668194c22a55;p=bertos.git diff --git a/bertos/cpu/cortex-m3/scripts/lm3s8962_rom.ld b/bertos/cpu/cortex-m3/scripts/lm3s8962_rom.ld index 03a497f7..b79f5c01 100644 --- a/bertos/cpu/cortex-m3/scripts/lm3s8962_rom.ld +++ b/bertos/cpu/cortex-m3/scripts/lm3s8962_rom.ld @@ -35,4 +35,19 @@ * \author Andrea Righi */ -INCLUDE bertos/cpu/cortex-m3/scripts/lm3s1968_rom.ld +/* + * Define stack size here + * Variable used in the cortex-m3_rom.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_rom.ld"