Changeset 11532ca in rtems
- Timestamp:
- 04/24/96 20:05:52 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a412622
- Parents:
- 1543932
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/gen68360/startup/linkcmds
r1543932 r11532ca 22 22 * Declare some sizes 23 23 */ 24 25 /* 26 * XXX: The assignment of ". += XyzSize;" fails in older gld's if the 27 * number used there is not constant so the calculated sizes are 28 * ignored below and the default number is used instead. 29 */ 30 24 31 HeapSize = DEFINED(HeapSize) ? HeapSize : 0x10000; 25 32 StackSize = DEFINED(StackSize) ? StackSize : 0x1000; … … 30 37 SECTIONS { 31 38 .text : { 39 _RamBase = .; 32 40 __RamBase = .; 33 41 CREATE_OBJECT_SYMBOLS … … 42 50 } >ram 43 51 .bss : { 52 M68Kvec = .; 44 53 _M68Kvec = .; 45 54 . += (256 * 4); … … 50 59 _end = .; 51 60 61 _HeapStart = .; 52 62 __HeapStart = .; 53 . += HeapSize; 54 . += StackSize; 63 /* XXX: Temporary to get around a gld bug 64 * 65 * . += HeapSize; 66 * . += StackSize; 67 */ 68 . += 0x10000; /* XXX */ 69 . += 0x1000; /* XXX */ 70 55 71 . = ALIGN (16); 56 72 stack_init = .; 57 73 clear_end = .; 58 74 75 _WorkspaceBase = .; 59 76 __WorkspaceBase = .; 60 77 } >ram … … 64 81 */ 65 82 dpram : { 83 m360 = .; 66 84 _m360 = .; 67 85 . += (8 * 1024); … … 73 91 */ 74 92 rom : { 93 _RomBase = .; 75 94 __RomBase = .; 76 95 } >rom
Note: See TracChangeset
for help on using the changeset viewer.