aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1995-01-16 00:51:02 +0000
committerSteve Chamberlain <sac@cygnus>1995-01-16 00:51:02 +0000
commit506f4ede9c1e5ae444a496854fdec7db869a2f53 (patch)
treeff1386c3e17946c08d9e3eb9ea8e9a8267fb8f6a /ld
parentb3235d56dc17a487a017a8438d6e28d265c7be26 (diff)
downloadgdb-506f4ede9c1e5ae444a496854fdec7db869a2f53.zip
gdb-506f4ede9c1e5ae444a496854fdec7db869a2f53.tar.gz
gdb-506f4ede9c1e5ae444a496854fdec7db869a2f53.tar.bz2
* configure.in (w65-*-*): New target.
* Makefile.in: Update. * scripttempl/w65.sc: New. * config/coff-w65.mt: New.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog7
-rw-r--r--ld/config/.Sanitize1
-rwxr-xr-xld/config/coff-w65.mt3
-rw-r--r--ld/emulparams/.Sanitize1
-rw-r--r--ld/emulparams/w65.sh5
-rw-r--r--ld/scripttempl/.Sanitize1
-rw-r--r--ld/scripttempl/w65.sc58
7 files changed, 76 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 7cb48a6..f95b2bb 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,10 @@
+Sun Jan 15 16:45:00 1995 Steve Chamberlain <sac@splat>
+
+ * configure.in (w65-*-*): New target.
+ * Makefile.in: Update.
+ * scripttempl/w65.sc: New.
+ * config/coff-w65.mt: New.
+
Thu Jan 12 01:32:25 1995 Ian Lance Taylor <ian@tweedledumb.cygnus.com>
* ldlang.c (lang_place_orphans): Don't ignore files with
diff --git a/ld/config/.Sanitize b/ld/config/.Sanitize
index f9b7e89..6ba1528 100644
--- a/ld/config/.Sanitize
+++ b/ld/config/.Sanitize
@@ -116,6 +116,7 @@ vax.mt
vsta.mt
vxworks68.mt
z8ksim.mt
+coff-w65.mt
Things-to-lose:
diff --git a/ld/config/coff-w65.mt b/ld/config/coff-w65.mt
new file mode 100755
index 0000000..36af96c
--- /dev/null
+++ b/ld/config/coff-w65.mt
@@ -0,0 +1,3 @@
+EMUL=w65
+
+
diff --git a/ld/emulparams/.Sanitize b/ld/emulparams/.Sanitize
index 388c8be..e3c1987 100644
--- a/ld/emulparams/.Sanitize
+++ b/ld/emulparams/.Sanitize
@@ -99,6 +99,7 @@ sun4.sh
vanilla.sh
vax.sh
vsta.sh
+w65.sh
z8ksim.sh
Things-to-lose:
diff --git a/ld/emulparams/w65.sh b/ld/emulparams/w65.sh
new file mode 100644
index 0000000..6f4d5ba
--- /dev/null
+++ b/ld/emulparams/w65.sh
@@ -0,0 +1,5 @@
+SCRIPT_NAME=w65
+OUTPUT_FORMAT="coff-w65"
+TEXT_START_ADDR=0x1000
+PAGE_SIZE=64
+ARCH=w65
diff --git a/ld/scripttempl/.Sanitize b/ld/scripttempl/.Sanitize
index 8b816be..287648a 100644
--- a/ld/scripttempl/.Sanitize
+++ b/ld/scripttempl/.Sanitize
@@ -63,6 +63,7 @@ sparccoff.sc
sparclynx.sc
st2000.sc
vanilla.sc
+w65.sc
z8ksim.sc
Things-to-lose:
diff --git a/ld/scripttempl/w65.sc b/ld/scripttempl/w65.sc
new file mode 100644
index 0000000..f904495
--- /dev/null
+++ b/ld/scripttempl/w65.sc
@@ -0,0 +1,58 @@
+cat <<EOF
+OUTPUT_FORMAT("${OUTPUT_FORMAT}")
+OUTPUT_ARCH(${ARCH})
+
+MEMORY {
+ ram : o = 0x1000, l = 512k
+ }
+
+SECTIONS
+{
+.text :
+ {
+ *(.text)
+ *(.strings)
+ ${RELOCATING+ _etext = . ; }
+ } ${RELOCATING+ > ram}
+
+
+.tors : {
+ ___ctors = . ;
+ *(.ctors)
+ ___ctors_end = . ;
+ ___dtors = . ;
+ *(.dtors)
+ ___dtors_end = . ;
+} ${RELOCATING+ > ram}
+
+.data :
+ {
+ *(.data)
+ ${RELOCATING+ _edata = . ; }
+ } ${RELOCATING+ > ram}
+.bss :
+ {
+ ${RELOCATING+ _bss_start = . ; }
+ *(.bss)
+ *(COMMON)
+ ${RELOCATING+ _end = . ; }
+ } ${RELOCATING+ >ram}
+.stack ${RELOCATING+ 0x30000 } :
+ {
+ ${RELOCATING+ _stack = . ; }
+ *(.stack)
+ } ${RELOCATING+ > ram}
+ .stab . (NOLOAD) :
+ {
+ [ .stab ]
+ }
+ .stabstr . (NOLOAD) :
+ {
+ [ .stabstr ]
+ }
+}
+EOF
+
+
+
+