diff options
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/maxqcoff.sc | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/ld/scripttempl/maxqcoff.sc b/ld/scripttempl/maxqcoff.sc deleted file mode 100644 index d35107d..0000000 --- a/ld/scripttempl/maxqcoff.sc +++ /dev/null @@ -1,43 +0,0 @@ -test -z "$ENTRY" && ENTRY=_main -cat <<EOF -OUTPUT_FORMAT("${OUTPUT_FORMAT}") -${LIB_SEARCH_DIRS} -${RELOCATING+ENTRY (${ENTRY})} -MEMORY - { - rom (rx) : ORIGIN = 0, LENGTH = 0x7FFE - ram (!rx) : org = 0x0A000, l = 0x5FFF - } - -SECTIONS -{ - .text ${RELOCATING+ 0x0000}: - { - *(.text) - } >rom - - .data ${RELOCATING}: - { - *(.data) - *(.rodata) - *(.bss) - *(COMMON) - ${RELOCATING+ edata = .}; - }>ram - -/* .bss ${RELOCATING+ SIZEOF(.data) + 0x0000} : - { - *(.bss) - *(COMMON) - } -*/ - .stab 0 ${RELOCATING+(NOLOAD)} : - { - [ .stab ] - } - .stabstr 0 ${RELOCATING+(NOLOAD)} : - { - [ .stabstr ] - } -} -EOF |