1995-01-16 00:40:48 +00:00
|
|
|
/* This file is tc-w65.h
|
* config/{tc-alpha.h, tc-arc.h, tc-d10v.h, tc-generic.h, tc-i960.h,
tc-mn10200.h, tc-mn10300.h, tc-sh.h, tc-v850.h, tc-vax.h, tc-w65.h}:
Add default definition of zero for TARGET_BYTES_BIG_ENDIAN.
* config/{tc-arm.h, tc-hppa.h, tc-i386.h, tc-mips.h, tc-ns32k.h,
tc-ppc.h, tc-sparc.h}: Move definition of TARGET_BYTES_BIG_ENDIAN
to a location consistent with the rest of the target include files.
* config/tc-i386.c: Remove misleading comment.
* doc/internals.texi (CPU backend): Add description of function
md_undefined_symbol.
start-sanitize-tic80
* config/tc-tic80.c: Add code to insert predefined symbols into the
symbol table so they can be parsed by the standard expression parser.
Remove custom code that use to parse them.
* config/tc-tic80.h: Move definition of TARGET_BYTES_BIG_ENDIAN
to a location consistent with the rest of the target include files.
end-sanitize-tic80
1997-02-14 07:53:14 +00:00
|
|
|
Copyright (C) 1995, 1997 Free Software Foundation, Inc.
|
1995-01-16 00:40:48 +00:00
|
|
|
|
|
|
|
This file is part of GAS, the GNU Assembler.
|
|
|
|
|
|
|
|
GAS is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
GAS is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
1997-02-14 23:05:36 +00:00
|
|
|
along with GAS; see the file COPYING. If not, write to the Free
|
|
|
|
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
02111-1307, USA. */
|
1995-01-16 00:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
#define TC_W65
|
|
|
|
|
* config/{tc-alpha.h, tc-arc.h, tc-d10v.h, tc-generic.h, tc-i960.h,
tc-mn10200.h, tc-mn10300.h, tc-sh.h, tc-v850.h, tc-vax.h, tc-w65.h}:
Add default definition of zero for TARGET_BYTES_BIG_ENDIAN.
* config/{tc-arm.h, tc-hppa.h, tc-i386.h, tc-mips.h, tc-ns32k.h,
tc-ppc.h, tc-sparc.h}: Move definition of TARGET_BYTES_BIG_ENDIAN
to a location consistent with the rest of the target include files.
* config/tc-i386.c: Remove misleading comment.
* doc/internals.texi (CPU backend): Add description of function
md_undefined_symbol.
start-sanitize-tic80
* config/tc-tic80.c: Add code to insert predefined symbols into the
symbol table so they can be parsed by the standard expression parser.
Remove custom code that use to parse them.
* config/tc-tic80.h: Move definition of TARGET_BYTES_BIG_ENDIAN
to a location consistent with the rest of the target include files.
end-sanitize-tic80
1997-02-14 07:53:14 +00:00
|
|
|
#define TARGET_BYTES_BIG_ENDIAN 0
|
|
|
|
|
1995-01-16 00:40:48 +00:00
|
|
|
/* This macro translates between an internal fix and an coff reloc type */
|
|
|
|
#define TC_COFF_FIX2RTYPE(fixP) tc_coff_fix2rtype(fixP)
|
|
|
|
|
|
|
|
#define BFD_ARCH bfd_arch_w65
|
|
|
|
#define COFF_MAGIC 0x6500
|
|
|
|
|
|
|
|
#define IGNORE_NONSTANDARD_ESCAPES
|
|
|
|
|
1995-07-19 16:14:49 +00:00
|
|
|
#define TC_RELOC_MANGLE(s,a,b,c) tc_reloc_mangle(a,b,c)
|
1995-01-16 00:40:48 +00:00
|
|
|
|
|
|
|
#define DO_NOT_STRIP 0
|
|
|
|
#define LISTING_HEADER "W65816 GAS "
|
|
|
|
#define NEED_FX_R_TYPE 1
|
|
|
|
#define RELOC_32 1234
|
|
|
|
|
|
|
|
#define TC_COFF_SIZEMACHDEP(frag) tc_coff_sizemachdep(frag)
|
|
|
|
#define TC_PARSE_CONS_EXPRESSION(EXP, NBYTES) w65_expression (EXP, NBYTES)
|
|
|
|
#define TC_COUNT_RELOC(x) (1)
|
|
|
|
#define TC_CONS_RELOC tc_cons_reloc
|
|
|
|
#define DONT_OVERFLOW
|
|
|
|
int tc_cons_reloc;
|
|
|
|
|
1995-02-28 23:37:38 +00:00
|
|
|
#define md_operand(x)
|
|
|
|
|
1995-04-11 06:10:34 +00:00
|
|
|
extern struct relax_type md_relax_table[];
|
|
|
|
#define TC_GENERIC_RELAX_TABLE md_relax_table
|
|
|
|
|
1995-02-28 23:37:38 +00:00
|
|
|
/* end of tc-w65.h */
|