1 /* tc-a29k.h -- Assemble for the AMD 29000.
2    Copyright 1989, 1990, 1991, 1992, 1993, 1995, 1998
3    Free Software Foundation, Inc.
4 
5 This file is part of GAS, the GNU Assembler.
6 
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11 
12 GAS is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with GAS; see the file COPYING.  If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA.  */
21 
22 #define TC_A29K
23 
24 #define TARGET_BYTES_BIG_ENDIAN	1
25 
26 #define WORKING_DOT_WORD
27 
28 #define LEX_DOLLAR 1
29 
30 #define tc_unrecognized_line(c) a29k_unrecognized_line (c)
31 extern int a29k_unrecognized_line PARAMS ((int));
32 
33 #define tc_headers_hook(a)		;	/* not used */
34 #define tc_headers_hook(a)		;	/* not used */
35 #define tc_crawl_symbol_chain(a)	;	/* not used */
36 #define tc_coff_symbol_emit_hook(a)	;	/* not used */
37 
38 #define AOUT_MACHTYPE 101
39 #define TC_COFF_FIX2RTYPE(fix_ptr) tc_coff_fix2rtype(fix_ptr)
40 #define BFD_ARCH bfd_arch_a29k
41 #define COFF_MAGIC SIPFBOMAGIC
42 /* Should the reloc be output ?
43 	on the 29k, this is true only if there is a symbol attached.
44 	on the h8, this is always true, since no fixup is done
45 */
46 #define TC_COUNT_RELOC(x) (x->fx_addsy)
47 #define TC_CONS_RELOC RELOC_32
48 
49 #define COFF_FLAGS F_AR32W
50 #define reloc_type int
51 #define NEED_FX_R_TYPE
52 
53 #define ZERO_BASED_SEGMENTS
54 
55 /* end of tc-a29k.h */
56