Changeset 2057572 in mainline for uspace/libc/arch
- Timestamp:
- 2007-03-27T23:40:25Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 399ece9
- Parents:
- 8d37a06
- Location:
- uspace/libc/arch/sparc64
- Files:
-
- 3 edited
-
_link.ld.in (modified) (3 diffs)
-
include/config.h (modified) (1 diff)
-
include/stack.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/arch/sparc64/_link.ld.in
r8d37a06 r2057572 8 8 9 9 SECTIONS { 10 . = 0x 2000;10 . = 0x4000; 11 11 12 .init ALIGN(0x 2000) : SUBALIGN(0x2000) {12 .init ALIGN(0x4000) : SUBALIGN(0x4000) { 13 13 *(.init); 14 14 } :text … … 18 18 } :text 19 19 20 .got ALIGN(0x 2000) : SUBALIGN(0x2000) {20 .got ALIGN(0x4000) : SUBALIGN(0x4000) { 21 21 _gp = .; 22 22 *(.got*); 23 23 } :data 24 .data ALIGN(0x 2000) : SUBALIGN(0x2000) {24 .data ALIGN(0x4000) : SUBALIGN(0x4000) { 25 25 *(.data); 26 26 *(.sdata); … … 42 42 } :data 43 43 44 . = ALIGN(0x 2000);44 . = ALIGN(0x4000); 45 45 _heap = .; 46 46 -
uspace/libc/arch/sparc64/include/config.h
r8d37a06 r2057572 36 36 #define LIBC_sparc64_CONFIG_H_ 37 37 38 #define PAGE_WIDTH 1 339 #define PAGE_SIZE (1 <<PAGE_WIDTH)40 #define PAGE_COLOR_BITS 1 /**< Bit 13 is the page color. */38 #define PAGE_WIDTH 14 39 #define PAGE_SIZE (1 << PAGE_WIDTH) 40 #define PAGE_COLOR_BITS 0 /**< Only one page color. */ 41 41 42 42 #endif -
uspace/libc/arch/sparc64/include/stack.h
r8d37a06 r2057572 44 44 * 16-extended-word save area for %i[0-7] and %l[0-7] registers. 45 45 */ 46 #define STACK_WINDOW_SAVE_AREA_SIZE (16 *STACK_ITEM_SIZE)46 #define STACK_WINDOW_SAVE_AREA_SIZE (16 * STACK_ITEM_SIZE) 47 47 48 48 /**
Note:
See TracChangeset
for help on using the changeset viewer.
