2000-08-24 Kazu Hirata <kazu@hxi.com>
* z8k-dis.c: Fix formatting.
This commit is contained in:
parent
46547ecc23
commit
5c90f90dfb
@ -1,3 +1,7 @@
|
||||
2000-08-24 Kazu Hirata <kazu@hxi.com>
|
||||
|
||||
* z8k-dis.c: Fix formatting.
|
||||
|
||||
2000-08-16 Jim Wilson <wilson@cygnus.com>
|
||||
|
||||
* ia64-ic.tbl (pr-readers-nobr-nomovpr): Add addl, adds. Delete
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* Disassemble z8000 code.
|
||||
Copyright 1992, 1993, 1995, 1998 Free Software Foundation, Inc.
|
||||
Copyright 1992, 1993, 1995, 1998, 2000
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Binutils.
|
||||
|
||||
@ -22,10 +23,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||
|
||||
#define DEFINE_TABLE
|
||||
#include "z8k-opc.h"
|
||||
|
||||
|
||||
#include <setjmp.h>
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
@ -196,7 +195,9 @@ z8k_lookup_instr (nibbles, info)
|
||||
while (!nibl_matched && z8k_table[tabl_index].name)
|
||||
{
|
||||
nibl_matched = 1;
|
||||
for (nibl_index = 0; nibl_index < z8k_table[tabl_index].length * 2 && nibl_matched; nibl_index++)
|
||||
for (nibl_index = 0;
|
||||
nibl_index < z8k_table[tabl_index].length * 2 && nibl_matched;
|
||||
nibl_index++)
|
||||
{
|
||||
if ((nibl_index % 4) == 0)
|
||||
/* Fetch one word at a time. */
|
||||
@ -439,7 +440,7 @@ unpack_instr (instr_data, is_segmented, info)
|
||||
instr_data->interrupts = instr_nibl & 0x3;
|
||||
break;
|
||||
case CLASS_BIT:
|
||||
/* do nothing */
|
||||
/* Do nothing. */
|
||||
break;
|
||||
case CLASS_IR:
|
||||
instr_data->arg_reg[datum_value] = instr_nibl;
|
||||
|
Loading…
Reference in New Issue
Block a user