aboutsummaryrefslogtreecommitdiff
path: root/ld/sh.sc-sh
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1993-04-27 01:37:02 +0000
committerSteve Chamberlain <sac@cygnus>1993-04-27 01:37:02 +0000
commit84d42ddd6118bae3fd014ec2549b6973973487dc (patch)
tree4b3981b3cc69bf79b45a558b2cdc1639db56bc60 /ld/sh.sc-sh
parent4a1bbbe75b7720522063f194bc3a0d1fbabc1a79 (diff)
downloadgdb-84d42ddd6118bae3fd014ec2549b6973973487dc.zip
gdb-84d42ddd6118bae3fd014ec2549b6973973487dc.tar.gz
gdb-84d42ddd6118bae3fd014ec2549b6973973487dc.tar.bz2
sh.em, sh.sh, sh.sc-sh: New files supporting Hitachi SH.
Diffstat (limited to 'ld/sh.sc-sh')
-rwxr-xr-xld/sh.sc-sh43
1 files changed, 43 insertions, 0 deletions
diff --git a/ld/sh.sc-sh b/ld/sh.sc-sh
new file mode 100755
index 0000000..ed2d44f
--- /dev/null
+++ b/ld/sh.sc-sh
@@ -0,0 +1,43 @@
+cat <<EOF
+OUTPUT_FORMAT("${OUTPUT_FORMAT}")
+OUTPUT_ARCH(${ARCH})
+
+MEMORY {
+ rom : o = 0x0000, l = 0x7fe0
+ duart : o = 0x7fe0, l = 16
+ ram : o = 0x8000, l = 28k
+ topram : o = 0x8000+28k, l = 1k
+ hmsram : o = 0xfb80, l = 512
+ }
+
+SECTIONS
+{
+.text :
+ {
+ *(.text)
+ *(.strings)
+ ${RELOCATING+ _etext = . ; }
+ } ${RELOCATING+ > ram}
+.data :
+ {
+ *(.data)
+ ${RELOCATING+ _edata = . ; }
+ } ${RELOCATING+ > ram}
+.bss :
+ {
+ ${RELOCATING+ _bss_start = . ;}
+ *(.bss)
+ *(COMMON)
+ ${RELOCATING+ _end = . ; }
+ } ${RELOCATING+ >ram}
+.stack :
+ {
+ ${RELOCATING+ _stack = . ; }
+ *(.stack)
+ } ${RELOCATING+ > topram}
+}
+EOF
+
+
+
+