aboutsummaryrefslogtreecommitdiff
path: root/bfd/archures.c
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-04-24 20:51:27 +0000
committerSteve Chamberlain <steve@cygnus>1991-04-24 20:51:27 +0000
commit4cddd1c9048abf7852e9faa4e46a9ce96d7f9436 (patch)
treeecfd460dcc357d90d1e917805f77494104b76dd7 /bfd/archures.c
parenta36f604047f7006445325a8e3d962c7f2c115a09 (diff)
downloadfsf-binutils-gdb-4cddd1c9048abf7852e9faa4e46a9ce96d7f9436.zip
fsf-binutils-gdb-4cddd1c9048abf7852e9faa4e46a9ce96d7f9436.tar.gz
fsf-binutils-gdb-4cddd1c9048abf7852e9faa4e46a9ce96d7f9436.tar.bz2
Changed the shape of the howto type yet again.
Now m88kbcs support can self host.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r--bfd/archures.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/bfd/archures.c b/bfd/archures.c
index b7fdaf9..2e151ed 100644
--- a/bfd/archures.c
+++ b/bfd/archures.c
@@ -53,7 +53,10 @@ struct arch_print {
{bfd_arch_convex, "convex", prt_num_mach, scan_num_mach},
{bfd_arch_m88k, "m88k", prt_num_mach, scan_num_mach},
{bfd_arch_pyramid, "pyramid", prt_num_mach, scan_num_mach},
- {bfd_arch_unknown, (char *)0, prt_num_mach, scan_num_mach},
+ {bfd_arch_h8_300, "H8/300", prt_num_mach, scan_num_mach},
+ {bfd_arch_unknown, (char *)0, prt_num_mach, scan_num_mach},
+
+
};
/* Return a printable string representing the architecture and machine
@@ -92,10 +95,10 @@ prt_num_mach (ap, machine)
combination. */
boolean
-bfd_scan_arch_mach (string, archp, machinep)
- char *string;
- enum bfd_architecture *archp;
- unsigned long *machinep;
+DEFUN(bfd_scan_arch_mach,(string, archp, machinep),
+ CONST char *string AND
+ enum bfd_architecture *archp AND
+ unsigned long *machinep)
{
struct arch_print *ap;
int len;