From 367428b5a1b9bf3ec92e00d3f19793ec1c0a80fc Mon Sep 17 00:00:00 2001 From: Steve Chamberlain Date: Fri, 4 Feb 1994 22:57:26 +0000 Subject: [PATCH] Support for various sicko segmented memory models. --- ld/scripttempl/h8500b.sc | 62 ++++++++++++++++++++++++++++++++++++++++ ld/scripttempl/h8500c.sc | 59 ++++++++++++++++++++++++++++++++++++++ ld/scripttempl/h8500m.sc | 61 +++++++++++++++++++++++++++++++++++++++ ld/scripttempl/h8500s.sc | 58 +++++++++++++++++++++++++++++++++++++ 4 files changed, 240 insertions(+) create mode 100644 ld/scripttempl/h8500b.sc create mode 100644 ld/scripttempl/h8500c.sc create mode 100644 ld/scripttempl/h8500m.sc create mode 100644 ld/scripttempl/h8500s.sc diff --git a/ld/scripttempl/h8500b.sc b/ld/scripttempl/h8500b.sc new file mode 100644 index 0000000000..4eec21a1f6 --- /dev/null +++ b/ld/scripttempl/h8500b.sc @@ -0,0 +1,62 @@ +cat < 64k */ + +SECTIONS +{ +.text 0x10000 : + { + *(.text) + *(.strings) + ${RELOCATING+ _etext = . ; } + } ${RELOCATING+ > ram} + + +.data 0x20000 : + { + *(.data) + ${RELOCATING+ _edata = . ; } + } ${RELOCATING+ > ram} + +.rdata 0x30000 : { + *(.rdata); + ___ctors = . ; + *(.ctors) + ___ctors_end = . ; + ___dtors = . ; + *(.dtors) + ___dtors_end = . ; +} ${RELOCATING+ > ram} + +.bss 0x40000 : + { + ${RELOCATING+ __start_bss = . ; } + *(.bss) + *(COMMON) + ${RELOCATING+ _end = . ; } + } ${RELOCATING+ >ram} +.stack 0x5fff0 : + { + ${RELOCATING+ _stack = . ; } + *(.stack) + } ${RELOCATING+ > topram} + + .stab . (NOLOAD) : + { + [ .stab ] + } + .stabstr . (NOLOAD) : + { + [ .stabstr ] + } +} +EOF + + + + diff --git a/ld/scripttempl/h8500m.sc b/ld/scripttempl/h8500m.sc new file mode 100644 index 0000000000..b1dee9d5ec --- /dev/null +++ b/ld/scripttempl/h8500m.sc @@ -0,0 +1,61 @@ +cat <