diff options
author | David Henkel-Wallace <gumby@cygnus> | 1991-03-21 21:11:25 +0000 |
---|---|---|
committer | David Henkel-Wallace <gumby@cygnus> | 1991-03-21 21:11:25 +0000 |
commit | 4a81b56152631cda9dc351cb4d2f61f395ee4414 (patch) | |
tree | 562bc9b14bcf414b6c301b769d4ce528c51d4703 /bfd/targets.c | |
parent | 907621824e31daf6504860009535f03676afee4d (diff) | |
download | gdb-4a81b56152631cda9dc351cb4d2f61f395ee4414.zip gdb-4a81b56152631cda9dc351cb4d2f61f395ee4414.tar.gz gdb-4a81b56152631cda9dc351cb4d2f61f395ee4414.tar.bz2 |
Initial revision
Diffstat (limited to 'bfd/targets.c')
-rw-r--r-- | bfd/targets.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/bfd/targets.c b/bfd/targets.c new file mode 100644 index 0000000..77fabb6 --- /dev/null +++ b/bfd/targets.c @@ -0,0 +1,50 @@ +/* Copyright (C) 1990, 1991 Free Software Foundation, Inc. + +This file is part of BFD, the Binary File Diddler. + +BFD is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 1, or (at your option) +any later version. + +BFD is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with BFD; see the file COPYING. If not, write to +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* $Id$ */ + + +/* This -*- C -*- source file will someday be machine-generated */ + +/*** Defines the target vector through which operations dispatch */ +#include "sysdep.h" +#include "bfd.h" +#include "libbfd.h" + +extern bfd_target aoutvec; +extern bfd_target srec_vec; +extern bfd_target b_out_vec_little_host; +extern bfd_target b_out_vec_big_host; +extern bfd_target icoff_little_vec; +extern bfd_target icoff_big_vec; + + +bfd_target *target_vector[] = + { +#ifndef INTEL960VERSION + &aoutvec, + &srec_vec, + +#endif /* INTEL960VERSION */ + &icoff_big_vec, + &icoff_little_vec, + &b_out_vec_big_host, + &b_out_vec_little_host, + + NULL + }; |