Add preliminary support for the we32k (AT&T 3b2).

This commit is contained in:
Brendan Kehoe 1992-08-27 22:11:48 +00:00
parent 98c0c56d67
commit 6697a1a911
5 changed files with 69 additions and 3 deletions

43
bfd/hosts/we32k.h Normal file
View File

@ -0,0 +1,43 @@
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
#include <ctype.h>
#include <string.h>
#include <sys/file.h>
#ifndef O_ACCMODE
#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
#endif
#ifndef DONTDECLARE_MALLOC
extern PTR EXFUN(malloc,(unsigned));
extern PTR EXFUN(realloc, (PTR, unsigned));
#endif
extern int EXFUN(abort,(void));
extern int EXFUN(free,(PTR));
extern void EXFUN(bcopy,(char*,char*,int));
extern void EXFUN(exit,(int));
extern void EXFUN(bzero,(char *, int));
extern int strtol();
#define NO_STDARG 1
/* EXACT TYPES */
typedef char int8e_type;
typedef unsigned char uint8e_type;
typedef short int16e_type;
typedef unsigned short uint16e_type;
typedef int int32e_type;
typedef unsigned int uint32e_type;
/* CORRECT SIZE OR GREATER */
typedef char int8_type;
typedef unsigned char uint8_type;
typedef short int16_type;
typedef unsigned short uint16_type;
typedef int int32_type;
typedef unsigned int uint32_type;
#include "fopen-same.h"

View File

@ -18,8 +18,6 @@ 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$ */
#include "bfd.h"
#include "sysdep.h"
#include "libbfd.h"
@ -76,7 +74,7 @@ DESCRIPTION
INODE
bfd_target, , Targets, Targets
DOCDD
SUBSECTION
bfd_target
@ -389,10 +387,13 @@ extern bfd_target m88kbcs_vec;
extern bfd_target m68kcoff_vec;
extern bfd_target i386coff_vec;
extern bfd_target i386aout_vec;
extern bfd_target i386linux_vec;
extern bfd_target a29kcoff_big_vec;
extern bfd_target trad_core_vec;
extern bfd_target rs6000coff_vec;
extern bfd_target h8300coff_vec;
extern bfd_target z8kcoff_vec;
extern bfd_target we32kcoff_vec;
#ifdef hp9000s800
extern bfd_target hppa_vec;
#endif
@ -432,6 +433,7 @@ bfd_target *target_vector[] = {
&demo_64_vec, /* Only compiled if host has long-long support */
#endif
&h8300coff_vec,
&z8kcoff_vec,
&m88kbcs_vec,
&srec_vec,
/* &tekhex_vec,*/
@ -447,6 +449,7 @@ bfd_target *target_vector[] = {
#ifdef hp9000s800
&hppa_vec,
#endif
&we32kcoff_vec,
#ifdef TRAD_CORE
&trad_core_vec,

View File

@ -1,3 +1,15 @@
Thu Aug 27 12:59:29 1992 Brendan Kehoe (brendan@cygnus.com)
* bfd.h: add we32k
Tue Aug 25 15:07:47 1992 Steve Chamberlain (sac@thepub.cygnus.com)
* bfd.h: new after Z8000 stuff
Mon Aug 17 09:01:23 1992 Ken Raeburn (raeburn@cygnus.com)
* bfd.h: Regenerated after page/segment size changes.
Sat Aug 1 13:46:31 1992 Fred Fish (fnf@cygnus.com)
* obstack.h: Merge changes from current FSF version.

View File

@ -649,6 +649,7 @@ enum bfd_architecture
bfd_arch_rs6000, /* IBM RS/6000 */
bfd_arch_hppa, /* HP PA RISC */
bfd_arch_z8k, /* Zilog Z8000 */
bfd_arch_we32k, /* AT&T we32000 family (3b2) */
#define bfd_mach_z8001 1
#define bfd_mach_z8002 2
bfd_arch_last

View File

@ -1,5 +1,12 @@
Thu Aug 27 13:00:01 1992 Brendan Kehoe (brendan@cygnus.com)
* symconst.h: comment out cruft at the end of #endif
Tue Aug 25 15:06:49 1992 Steve Chamberlain (sac@thepub.cygnus.com)
* internal.h: added #define for STYP_LIT, removed from a29k and
h8300.
* z8k.h: added z8000 support
Thu Jul 16 16:32:00 1992 Steve Chamberlain (sac@thepub.cygnus.com)