Changeset 8f9239e in mainline
- Timestamp:
- 2006-03-12T20:11:06Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a3aa1e1
- Parents:
- 8286c3b
- Location:
- libc/arch/mips32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/arch/mips32/_link.ld.in
r8286c3b r8f9239e 4 4 SECTIONS { 5 5 . = 0x4000; 6 .image : SUBALIGN(0x4000) { 6 .init : SUBALIGN(0x4000) { 7 *(.init); 8 } 9 .text : { 10 *(.text); 11 *(.rodata*); 12 } 13 .data ALIGN(0x4000) : { 14 *(.data); 15 } 16 .bss : { 17 *(.bss); 18 *(.sbss); 19 *(COMMON); 20 } 21 /DISCARD/ : { 7 22 *(*); 8 23 } -
libc/arch/mips32/src/entry.s
r8286c3b r8f9239e 31 31 .org 0 32 32 33 .section .init, "ax" 33 34 .globl __entry 34 35
Note:
See TracChangeset
for help on using the changeset viewer.