Adding ns32k definitions.

This commit is contained in:
phil 1994-04-28 17:10:40 +00:00
parent af75045f58
commit 9911db04dc
4 changed files with 10 additions and 4 deletions

View File

@ -19,7 +19,7 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: archures.c,v 1.1 1994/01/28 12:37:37 pk Exp $
$Id: archures.c,v 1.2 1994/04/28 17:10:40 phil Exp $
*/
/*
@ -108,6 +108,7 @@ DESCRIPTION
. bfd_arch_h8500, {* Hitachi H8/500 *}
. bfd_arch_sh, {* Hitachi SH *}
. bfd_arch_alpha, {* Dec Alpha *}
. bfd_arch_ns32k,
. bfd_arch_last
. };
@ -425,6 +426,7 @@ extern void bfd_sparc_arch PARAMS ((void));
extern void bfd_vax_arch PARAMS ((void));
extern void bfd_we32k_arch PARAMS ((void));
extern void bfd_z8k_arch PARAMS ((void));
extern void bfd_ns32k_arch PARAMS ((void));
static void (*archures_init_table[]) PARAMS ((void)) =
{
@ -447,6 +449,7 @@ static void (*archures_init_table[]) PARAMS ((void)) =
bfd_vax_arch,
bfd_we32k_arch,
bfd_z8k_arch,
bfd_ns32k_arch,
#endif
0
};

View File

@ -22,7 +22,7 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: bfd.h,v 1.1 1994/01/28 12:37:40 pk Exp $
$Id: bfd.h,v 1.2 1994/04/28 17:10:42 phil Exp $
*/
/* bfd.h -- The only header file required by users of the bfd library
@ -856,6 +856,7 @@ enum bfd_architecture
bfd_arch_h8500, /* Hitachi H8/500 */
bfd_arch_sh, /* Hitachi SH */
bfd_arch_alpha, /* Dec Alpha */
bfd_arch_ns32k, /* National Semiconductor Series 32000 */
bfd_arch_last
};

View File

@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: libaout.h,v 1.2 1994/02/04 18:08:09 mycroft Exp $
$Id: libaout.h,v 1.3 1994/04/28 17:10:44 phil Exp $
*/
/* We try to encapsulate the differences in the various a.out file
@ -132,6 +132,7 @@ enum machine_type {
M_386_NETBSD = 134, /* NetBSD/386 binary */
M_M68K_NETBSD = 135, /* NetBSD/m68k binary */
M_M68K4K_NETBSD = 136, /* NetBSD/m68k4k binary */
M_NS32K_NETBSD = 137, /* NetBSD/ns32k binary */
M_MIPS1 = 151, /* MIPS R2000/R3000 binary */
M_MIPS2 = 152, /* MIPS R4000/R6000 binary */
M_HP200 = 200, /* HP 200 (68010) BSD binary */

View File

@ -18,7 +18,7 @@ You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: targets.c,v 1.2 1994/02/04 18:08:11 mycroft Exp $
$Id: targets.c,v 1.3 1994/04/28 17:10:45 phil Exp $
*/
#include "bfd.h"
@ -385,6 +385,7 @@ extern bfd_target netbsd_386_vec;
extern bfd_target netbsd_sparc_vec;
extern bfd_target netbsd_m68k_vec;
extern bfd_target netbsd_m68k4k_vec;
extern bfd_target netbsd_ns32k_vec;
/* srec is always included. */
extern bfd_target srec_vec;