diff options
author | Nick Clifton <nickc@redhat.com> | 2006-02-17 14:36:28 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2006-02-17 14:36:28 +0000 |
commit | d70c5fc7c56fa9915f594aca8de15b478f3ab5b0 (patch) | |
tree | 47ad1b8f49a0f428e7c1d53f02062e685c5f0ef9 /ld/scripttempl | |
parent | 0b92ab21c5c6920cc18c05efadd3a52fbd35c825 (diff) | |
download | gdb-d70c5fc7c56fa9915f594aca8de15b478f3ab5b0.zip gdb-d70c5fc7c56fa9915f594aca8de15b478f3ab5b0.tar.gz gdb-d70c5fc7c56fa9915f594aca8de15b478f3ab5b0.tar.bz2 |
Add support for the Infineon XC16X.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/elf32xc16x.sc | 61 | ||||
-rw-r--r-- | ld/scripttempl/elf32xc16xl.sc | 64 | ||||
-rw-r--r-- | ld/scripttempl/elf32xc16xs.sc | 64 |
3 files changed, 189 insertions, 0 deletions
diff --git a/ld/scripttempl/elf32xc16x.sc b/ld/scripttempl/elf32xc16x.sc new file mode 100644 index 0000000..7ffdc38 --- /dev/null +++ b/ld/scripttempl/elf32xc16x.sc @@ -0,0 +1,61 @@ +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +OUTPUT_ARCH(${ARCH}) +ENTRY("_start") +MEMORY +{ + + vectarea : o =0x00000, l = 0x0300 + + introm : o = 0x00400, l = 0x16000 + /* The stack starts at the top of main ram. */ + + dram : o = 0x8000 , l = 0xffff + /* At the very top of the address space is the 8-bit area. */ + + ldata : o =0x4000 ,l = 0x0200 +} + +SECTIONS +{ +.init : + { + *(.init) + } ${RELOCATING+ >introm} + +.text : + { + *(.rodata) + *(.text.*) + *(.text) + ${RELOCATING+ _etext = . ; } + } ${RELOCATING+ > introm} +.data : + { + *(.data) + *(.data.*) + + ${RELOCATING+ _edata = . ; } + } ${RELOCATING+ > dram} + +.bss : + { + ${RELOCATING+ _bss_start = . ;} + *(.bss) + *(COMMON) + ${RELOCATING+ _end = . ; } + } ${RELOCATING+ > dram} + + .ldata : + { + *(.ldata) + } ${RELOCATING+ > ldata} + + + .vects : + { + *(.vects) + } ${RELOCATING+ > vectarea} + +} +EOF diff --git a/ld/scripttempl/elf32xc16xl.sc b/ld/scripttempl/elf32xc16xl.sc new file mode 100644 index 0000000..215b50a --- /dev/null +++ b/ld/scripttempl/elf32xc16xl.sc @@ -0,0 +1,64 @@ +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +OUTPUT_ARCH(${ARCH}) +ENTRY("_start") +MEMORY +{ + vectarea : o =0xc00000, l = 0x0300 + + introm : o = 0xc00300, l = 0x16000 + /* The stack starts at the top of main ram. */ + + dram : o = 0x8000 , l = 0xffff + /* At the very top of the address space is the 8-bit area. */ + + ldata : o =0x4000 ,l = 0x0200 +} +SECTIONS +{ +/*.vects : + { + *(.vects) + } ${RELOCATING+ > vectarea} */ +.init : + { + *(.init) + } ${RELOCATING+ >introm} + +.text : + { + *(.rodata) + *(.text.*) + *(.text) + ${RELOCATING+ _etext = . ; } + } ${RELOCATING+ > introm} +.data : + { + *(.data) + *(.data.*) + + ${RELOCATING+ _edata = . ; } + } ${RELOCATING+ > dram} + +.bss : + { + ${RELOCATING+ _bss_start = . ;} + *(.bss) + *(COMMON) + ${RELOCATING+ _end = . ; } + } ${RELOCATING+ > dram} + + .ldata : + { + *(.ldata) + } ${RELOCATING+ > ldata} + + + .vects : + { + *(.vects) + } ${RELOCATING+ > vectarea} + + +} +EOF diff --git a/ld/scripttempl/elf32xc16xs.sc b/ld/scripttempl/elf32xc16xs.sc new file mode 100644 index 0000000..215b50a --- /dev/null +++ b/ld/scripttempl/elf32xc16xs.sc @@ -0,0 +1,64 @@ +cat <<EOF +OUTPUT_FORMAT("${OUTPUT_FORMAT}") +OUTPUT_ARCH(${ARCH}) +ENTRY("_start") +MEMORY +{ + vectarea : o =0xc00000, l = 0x0300 + + introm : o = 0xc00300, l = 0x16000 + /* The stack starts at the top of main ram. */ + + dram : o = 0x8000 , l = 0xffff + /* At the very top of the address space is the 8-bit area. */ + + ldata : o =0x4000 ,l = 0x0200 +} +SECTIONS +{ +/*.vects : + { + *(.vects) + } ${RELOCATING+ > vectarea} */ +.init : + { + *(.init) + } ${RELOCATING+ >introm} + +.text : + { + *(.rodata) + *(.text.*) + *(.text) + ${RELOCATING+ _etext = . ; } + } ${RELOCATING+ > introm} +.data : + { + *(.data) + *(.data.*) + + ${RELOCATING+ _edata = . ; } + } ${RELOCATING+ > dram} + +.bss : + { + ${RELOCATING+ _bss_start = . ;} + *(.bss) + *(COMMON) + ${RELOCATING+ _end = . ; } + } ${RELOCATING+ > dram} + + .ldata : + { + *(.ldata) + } ${RELOCATING+ > ldata} + + + .vects : + { + *(.vects) + } ${RELOCATING+ > vectarea} + + +} +EOF |