forked from Imagelibrary/rtems
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:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user