1179404Sobrien/* Traditional MIPS targets
2218822Sdim   Copyright 2000, 2003 Free Software Foundation, Inc.
3179404Sobrien
4179404Sobrien   This file is part of GAS, the GNU Assembler.
5179404Sobrien
6179404Sobrien   GAS is free software; you can redistribute it and/or modify
7179404Sobrien   it under the terms of the GNU General Public License as published by
8179404Sobrien   the Free Software Foundation; either version 2, or (at your option)
9179404Sobrien   any later version.
10179404Sobrien
11179404Sobrien   GAS is distributed in the hope that it will be useful,
12179404Sobrien   but WITHOUT ANY WARRANTY; without even the implied warranty of
13179404Sobrien   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14179404Sobrien   GNU General Public License for more details.
15179404Sobrien
16179404Sobrien   You should have received a copy of the GNU General Public License
17179404Sobrien   along with GAS; see the file COPYING.  If not, write to the Free
18218822Sdim   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19218822Sdim   02110-1301, USA.  */
20179404Sobrien
21179404Sobrien/* This file is te-tmips.h and is intended to provide support for
22179404Sobrien   traditional mips targets like mips-dde-sysv4.2MP (Supermax ) ,
23179404Sobrien   mips-sni-sysv4* (Sinix) etc. The base for this file is te-generic.h.
24179404Sobrien   Created by Koundinya.K < kk@ddeorg.soft.net > with the help of
25179404Sobrien   Ian Lance Taylor, Cygnus Support, <ian@cygnus.com>.  */
26179404Sobrien
27179404Sobrien/* Added these, because if we don't know what we're targeting we may
28179404Sobrien   need an assembler version of libgcc, and that will use local
29179404Sobrien   labels.  */
30179404Sobrien
31179404Sobrien#define TE_TMIPS 1
32179404Sobrien#define LOCAL_LABELS_DOLLAR 1
33179404Sobrien#define LOCAL_LABELS_FB 1
34179404Sobrien
35179404Sobrien/* these define interfaces */
36179404Sobrien#ifdef OBJ_HEADER
37179404Sobrien#include OBJ_HEADER
38179404Sobrien#else
39179404Sobrien#include "obj-format.h"
40179404Sobrien#endif
41