* 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:
parent
4db4e912e1
commit
0c9b3858c1
3 changed files with 721 additions and 699 deletions
|
@ -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>
|
||||
|
||||
* configure.in: For bfd_vax_arch, build vax-dis.lo.
|
||||
|
|
|
@ -254,7 +254,9 @@ disassemble (memaddr, info, insn, size)
|
|||
mysize = 7;
|
||||
|
||||
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;
|
||||
unsigned int nocomma;
|
||||
|
|
1409
opcodes/m10300-opc.c
1409
opcodes/m10300-opc.c
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue