1214571Sdim/* BFD back-end for ARM WINCE PE IMAGE COFF files.
2214571Sdim   Copyright 2006 Free Software Foundation, Inc.
3214571Sdim
4214571Sdim   This file is part of BFD, the Binary File Descriptor library.
5214571Sdim
6214571Sdim   This program is free software; you can redistribute it and/or modify
7214571Sdim   it under the terms of the GNU General Public License as published by
8214571Sdim   the Free Software Foundation; either version 2 of the License, or
9214571Sdim   (at your option) any later version.
10214571Sdim
11214571Sdim   This program is distributed in the hope that it will be useful,
12214571Sdim   but WITHOUT ANY WARRANTY; without even the implied warranty of
13214571Sdim   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14214571Sdim   GNU General Public License for more details.
15214571Sdim
16214571Sdim   You should have received a copy of the GNU General Public License
17214571Sdim   along with this program; if not, write to the Free Software
18214571Sdim   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.  */
19214571Sdim
20214571Sdim#define TARGET_UNDERSCORE    0
21214571Sdim#define USER_LABEL_PREFIX    ""
22214571Sdim
23214571Sdim#define TARGET_LITTLE_SYM    arm_wince_pei_little_vec
24214571Sdim#define TARGET_LITTLE_NAME   "pei-arm-wince-little"
25214571Sdim#define TARGET_BIG_SYM       arm_wince_pei_big_vec
26214571Sdim#define TARGET_BIG_NAME      "pei-arm-wince-big"
27214571Sdim
28214571Sdim#define LOCAL_LABEL_PREFIX "."
29214571Sdim
30214571Sdim#include "pei-arm.c"
31