diff options
author | Alan Modra <amodra@gmail.com> | 2018-04-16 15:26:05 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2018-04-16 15:26:05 +0930 |
commit | a9a4b30244006a0087c5a7bf73cbb13927f1d9f1 (patch) | |
tree | c3822fe01e204e7ad80a57e92afc0d103b390605 /include | |
parent | 04cb01fd5a3bc167ae26486bbc2bf941e96ad805 (diff) | |
download | gdb-a9a4b30244006a0087c5a7bf73cbb13927f1d9f1.zip gdb-a9a4b30244006a0087c5a7bf73cbb13927f1d9f1.tar.gz gdb-a9a4b30244006a0087c5a7bf73cbb13927f1d9f1.tar.bz2 |
Remove w65 support
include/
* coff/internal.h: Remove w65 support.
* coff/w65.h: Delete.
bfd/
* Makefile.am: Remove w65 support.
* archures.c: Likewise.
* coffcode.h: Likewise.
* config.bfd: Likewise.
* configure.ac: Likewise.
* targets.c: Likewise.
* coff-w65.c: Delete.
* cpu-w65.c: Delete.
* Makefile.in: Regenerate.
* bfd-in2.h: Regenerate.
* configure: Regenerate.
* po/SRC-POTFILES.in: Regenerate.
opcodes/
* Makefile.am: Remove w65 support.
* configure.ac: Likewise.
* disassemble.c: Likewise.
* disassemble.h: Likewise.
* w65-dis.c: Delete.
* w65-opc.h: Delete.
* Makefile.in: Regenerate.
* configure: Regenerate.
* po/POTFILES.in: Regenerate.
binutils/
* testsuite/binutils-all/objcopy.exp: Remove w65 support.
ld/
* Makefile.am: Remove w65 support.
* configure.tgt: Likewise.
* emulparams/w65.sh: Delete.
* scripttempl/w65.sc: Delete.
* Makefile.in: Regenerate.
* po/BLD-POTFILES.in: Regenerate.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/coff/internal.h | 17 | ||||
-rw-r--r-- | include/coff/w65.h | 47 |
3 files changed, 5 insertions, 64 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index a5301c9..204a512 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,5 +1,10 @@ 2018-04-16 Alan Modra <amodra@gmail.com> + * coff/internal.h: Remove w65 support. + * coff/w65.h: Delete. + +2018-04-16 Alan Modra <amodra@gmail.com> + * coff/we32k.h: Delete. 2018-04-16 Alan Modra <amodra@gmail.com> diff --git a/include/coff/internal.h b/include/coff/internal.h index 47f2a54..1879ddc 100644 --- a/include/coff/internal.h +++ b/include/coff/internal.h @@ -809,21 +809,4 @@ struct internal_reloc #define R_IMM24 0x33 /* 24 bit abs */ /* R_JR, R_IMM8, R_IMM16, R_IMM32 - as for Z8k */ -/* W65 modes */ - -#define R_W65_ABS8 1 /* addr & 0xff */ -#define R_W65_ABS16 2 /* addr & 0xffff */ -#define R_W65_ABS24 3 /* addr & 0xffffff */ - -#define R_W65_ABS8S8 4 /* (addr >> 8) & 0xff */ -#define R_W65_ABS8S16 5 /* (addr >> 16) & 0xff */ - -#define R_W65_ABS16S8 6 /* (addr >> 8) & 0ffff */ -#define R_W65_ABS16S16 7 /* (addr >> 16) & 0ffff */ - -#define R_W65_PCR8 8 -#define R_W65_PCR16 9 - -#define R_W65_DP 10 /* direct page 8 bits only */ - #endif /* GNU_COFF_INTERNAL_H */ diff --git a/include/coff/w65.h b/include/coff/w65.h deleted file mode 100644 index f8401a5..0000000 --- a/include/coff/w65.h +++ /dev/null @@ -1,47 +0,0 @@ -/* coff information for WDC 65816 - - Copyright (C) 2001-2018 Free Software Foundation, Inc. - - This program 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 3 of the License, or - (at your option) any later version. - - This program 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 - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, - MA 02110-1301, USA. */ - -#define L_LNNO_SIZE 4 -#include "coff/external.h" - -#define W65MAGIC 0x6500 - -#define W65BADMAG(x) (((x).f_magic != W65MAGIC)) - -/********************** RELOCATION DIRECTIVES **********************/ - -/* The external reloc has an offset field, because some of the reloc - types on the w65 don't have room in the instruction for the entire - offset - eg the strange jump and high page addressing modes */ - -struct external_reloc -{ - char r_vaddr[4]; - char r_symndx[4]; - char r_offset[4]; - char r_type[2]; - char r_stuff[2]; -}; - -#define RELOC struct external_reloc -#define RELSZ 16 - - - - |