aout0.c revision 78828
133965Sjdp/* BFD backend for SunOS style a.out with flags set to 0
278828Sobrien   Copyright 1990, 1991, 1992, 1993, 1994, 1995
378828Sobrien   Free Software Foundation, Inc.
433965Sjdp   Written by Cygnus Support.
533965Sjdp
633965SjdpThis file is part of BFD, the Binary File Descriptor library.
733965Sjdp
833965SjdpThis program is free software; you can redistribute it and/or modify
933965Sjdpit under the terms of the GNU General Public License as published by
1033965Sjdpthe Free Software Foundation; either version 2 of the License, or
1133965Sjdp(at your option) any later version.
1233965Sjdp
1333965SjdpThis program is distributed in the hope that it will be useful,
1433965Sjdpbut WITHOUT ANY WARRANTY; without even the implied warranty of
1533965SjdpMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1633965SjdpGNU General Public License for more details.
1733965Sjdp
1833965SjdpYou should have received a copy of the GNU General Public License
1933965Sjdpalong with this program; if not, write to the Free Software
2033965SjdpFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
2133965Sjdp
2233965Sjdp#define TARGETNAME "a.out-zero-big"
2333965Sjdp#define MY(OP) CAT(aout0_big_,OP)
2433965Sjdp
2533965Sjdp#include "bfd.h"
2633965Sjdp
2733965Sjdp#define MY_exec_hdr_flags 0
2833965Sjdp
2933965Sjdp#define MACHTYPE_OK(mtype) \
3033965Sjdp  ((mtype) == M_UNKNOWN || (mtype) == M_68010 || (mtype) == M_68020)
3133965Sjdp
3233965Sjdp/* Include the usual a.out support.  */
3333965Sjdp#include "aoutf1.h"
34