pe-i386.c revision 33965
133965Sjdp/* BFD back-end for Intel 386 PECOFF files.
233965Sjdp   Copyright 1995 Free Software Foundation, Inc.
333965Sjdp
433965SjdpThis file is part of BFD, the Binary File Descriptor library.
533965Sjdp
633965SjdpThis program is free software; you can redistribute it and/or modify
733965Sjdpit under the terms of the GNU General Public License as published by
833965Sjdpthe Free Software Foundation; either version 2 of the License, or
933965Sjdp(at your option) any later version.
1033965Sjdp
1133965SjdpThis program is distributed in the hope that it will be useful,
1233965Sjdpbut WITHOUT ANY WARRANTY; without even the implied warranty of
1333965SjdpMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1433965SjdpGNU General Public License for more details.
1533965Sjdp
1633965SjdpYou should have received a copy of the GNU General Public License
1733965Sjdpalong with this program; if not, write to the Free Software
1833965SjdpFoundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
1933965Sjdp
2033965Sjdp#include "bfd.h"
2133965Sjdp#include "sysdep.h"
2233965Sjdp
2333965Sjdp
2433965Sjdp#define TARGET_SYM i386pe_vec
2533965Sjdp#define TARGET_NAME "pe-i386"
2633965Sjdp#define COFF_WITH_PE
2733965Sjdp#define PCRELOFFSET true
2833965Sjdp#define TARGET_UNDERSCORE '_'
2933965Sjdp#define COFF_LONG_SECTION_NAMES
3033965Sjdp
3133965Sjdp#include "coff-i386.c"
32