Add some missign register defines. Reformat.
[bertos.git] / bertos / cpu / cortex-m3 / scripts / lm3s8962_rom.ld
index 03a497f73f4bef9ee03e24d31bb6fcfa66116a82..b79f5c01f43a4cc256484c4399bbff829b533bb0 100644 (file)
  * \author Andrea Righi <arighi@develer.com>
  */
 
-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"