mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* m10300-dis.c: Only recognize instructions from the currently
selected machine. * m10300-opc.c: Add field indicating the particular variant of the mn10300 each instruction is available on.
This commit is contained in:
@ -1,3 +1,10 @@
|
|||||||
|
Fri Jun 26 11:08:55 1998 Jeffrey A Law (law@cygnus.com)
|
||||||
|
|
||||||
|
* m10300-dis.c: Only recognize instructions from the currently
|
||||||
|
selected machine.
|
||||||
|
* m10300-opc.c: Add field indicating the particular variant of
|
||||||
|
the mn10300 each instruction is available on.
|
||||||
|
|
||||||
Fri Jun 26 12:04:21 1998 Ian Lance Taylor <ian@cygnus.com>
|
Fri Jun 26 12:04:21 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* configure.in: For bfd_vax_arch, build vax-dis.lo.
|
* configure.in: For bfd_vax_arch, build vax-dis.lo.
|
||||||
|
@ -254,7 +254,9 @@ disassemble (memaddr, info, insn, size)
|
|||||||
mysize = 7;
|
mysize = 7;
|
||||||
|
|
||||||
if ((op->mask & insn) == op->opcode
|
if ((op->mask & insn) == op->opcode
|
||||||
&& size == (unsigned int) mysize)
|
&& size == (unsigned int) mysize
|
||||||
|
&& (op->machine == 0
|
||||||
|
|| op->machine == info->mach))
|
||||||
{
|
{
|
||||||
const unsigned char *opindex_ptr;
|
const unsigned char *opindex_ptr;
|
||||||
unsigned int nocomma;
|
unsigned int nocomma;
|
||||||
|
1409
opcodes/m10300-opc.c
1409
opcodes/m10300-opc.c
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user