2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>

* startup/linkcmds: Correct to have 65K total RAM (mostly external) and
	correct base address.
This commit is contained in:
Joel Sherrill
2009-05-08 13:02:08 +00:00
parent 199ccded5d
commit 1cf6593efa
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2009-05-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* startup/linkcmds: Correct to have 65K total RAM (mostly external) and
correct base address.
2009-05-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h: Add BSP_SMALL_MEMORY.

View File

@@ -5,8 +5,8 @@
/*
* Declare some sizes.
*/
RamBase = DEFINED(RamBase) ? RamBase : 0;
RamSize = DEFINED(RamSize) ? RamSize : 256K;
RamBase = DEFINED(RamBase) ? RamBase : 0x08000000;
RamSize = DEFINED(RamSize) ? RamSize : 64K;
HeapSize = DEFINED(HeapSize) ? HeapSize : 0x0;
StackSize = DEFINED(StackSize) ? StackSize : 0x1000;