diff options
author | John Darrington <john@darrington.wattle.id.au> | 2019-01-03 18:30:40 +0100 |
---|---|---|
committer | John Darrington <john@darrington.wattle.id.au> | 2019-01-03 18:30:40 +0100 |
commit | ef1ad42b8b5f2c43d74582d2e629841c39962c18 (patch) | |
tree | d35cab9b05e67ce5ba663688ebb0101774a47145 /opcodes/configure.ac | |
parent | 444b3faef5397eee5a06fe0e683d2ac3e6628fdc (diff) | |
download | gdb-ef1ad42b8b5f2c43d74582d2e629841c39962c18.zip gdb-ef1ad42b8b5f2c43d74582d2e629841c39962c18.tar.gz gdb-ef1ad42b8b5f2c43d74582d2e629841c39962c18.tar.bz2 |
S12Z: opcodes: Separate the decoding of operations from their display.
This change adds an abstraction layer between the decoding of machine
operations and their disassembled textual representation. This allows
the decoding routines to be re-used for other purposes (at the expense)
of slightly slower running time.
ChangeLog: opcodes/
* s12z-opc.c: New file.
* s12z-opc.h: New file.
* s12z-dis.c: Removed all code not directly related to display
of instructions. Used the interface provided by the new files
instead.
* Makefile.am (TARGET_LIBOPCODES_CFILES) Add s12z-opc.c.
* Makefile.in: regenerate.
* configure.ac (bfd_s12z_arch): Correct the dependencies.
* configure: regenerate.
Diffstat (limited to 'opcodes/configure.ac')
-rw-r--r-- | opcodes/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/configure.ac b/opcodes/configure.ac index 7a1738c..4eb1900 100644 --- a/opcodes/configure.ac +++ b/opcodes/configure.ac @@ -287,7 +287,7 @@ if test x${all_targets} = xfalse ; then bfd_m68hc12_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;; bfd_m9s12x_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;; bfd_m9s12xg_arch) ta="$ta m68hc11-dis.lo m68hc11-opc.lo" ;; - bfd_s12z_arch) ta="$ta s12z-dis.lo m68hc11-opc.lo" ;; + bfd_s12z_arch) ta="$ta s12z-dis.lo s12z-opc.lo" ;; bfd_m68k_arch) ta="$ta m68k-dis.lo m68k-opc.lo" ;; bfd_mcore_arch) ta="$ta mcore-dis.lo" ;; bfd_mep_arch) ta="$ta mep-asm.lo mep-desc.lo mep-dis.lo mep-ibld.lo mep-opc.lo" using_cgen=yes ;; |