Changeset 48449a8 in rtems for c/src/lib/libbsp/sparc64/shared/startup/linkcmds
- Timestamp:
- 10/06/11 16:46:36 (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 71d093f0
- Parents:
- b7d3a2ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/sparc64/shared/startup/linkcmds
rb7d3a2ca r48449a8 14 14 */ 15 15 RamBase = DEFINED(RamBase) ? RamBase : 0x0; 16 RamSize = DEFINED(RamSize) ? RamSize : 1 6M;17 HeapSize = DEFINED(HeapSize) ? HeapSize : 256k;18 StackSize = DEFINED(StackSize) ? StackSize : 256k;16 RamSize = DEFINED(RamSize) ? RamSize : 12M; 17 HeapSize = DEFINED(HeapSize) ? HeapSize : 1M; 18 StackSize = DEFINED(StackSize) ? StackSize : 1M; 19 19 20 20 RAM_END = RamBase + RamSize; … … 26 26 MEMORY 27 27 { 28 ram : ORIGIN = 0x0, LENGTH = 1 6M28 ram : ORIGIN = 0x0, LENGTH = 12M 29 29 } 30 30
Note: See TracChangeset
for help on using the changeset viewer.