FreeCalypso > hg > freecalypso-tools
view target-utils/c139-lldbg/lldbg.lds @ 669:ba9523ca6ed8
fc-loadtool code: preparations for e-program-* addition
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 08 Mar 2020 01:32:08 +0000 |
parents | 35e3963f03e9 |
children |
line wrap: on
line source
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm") OUTPUT_ARCH(arm) ENTRY(_entry) SECTIONS { /* code */ . = 0x3B0000; .text : { /* regular code */ *(.text*) /* gcc voodoo */ *(.glue_7t) *(.glue_7) *(.vfp11_veneer) *(.v4_bx) . = ALIGN(4); } /* read-only data */ . = ALIGN(4); .rodata : { *(.rodata*) } /* cannot have any initialized data */ /DISCARD/ : { *(.data) } /* uninitialized data */ .bss 0x83C000 (NOLOAD) : { . = ALIGN(4); __bss_start = .; *(.bss) } . = ALIGN(4); __bss_end = .; /* end of image */ _end = .; PROVIDE(end = .); } stack_bottom = 0x83FFFC;