133965Sjdp/* BFD backend for SunOS style a.out with flags set to 0
289857Sobrien   Copyright 1990, 1991, 1992, 1993, 1994, 1995, 2001
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
20218822SdimFoundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
2133965Sjdp
2233965Sjdp#define TARGETNAME "a.out-zero-big"
2333965Sjdp
2489857Sobrien/* Do not "beautify" the CONCAT* macro args.  Traditional C will not
2589857Sobrien   remove whitespace added here, and thus will fail to concatenate
2689857Sobrien   the tokens.  */
2789857Sobrien#define MY(OP) CONCAT2 (aout0_big_,OP)
2889857Sobrien
2933965Sjdp#include "bfd.h"
3033965Sjdp
3133965Sjdp#define MY_exec_hdr_flags 0
3233965Sjdp
3333965Sjdp#define MACHTYPE_OK(mtype) \
3433965Sjdp  ((mtype) == M_UNKNOWN || (mtype) == M_68010 || (mtype) == M_68020)
3533965Sjdp
3633965Sjdp/* Include the usual a.out support.  */
3733965Sjdp#include "aoutf1.h"
38