From fbb59cdf4d77cbcadba634b67859704d8eeb14f8 Mon Sep 17 00:00:00 2001 From: nickc Date: Fri, 7 May 1999 09:14:54 +0000 Subject: [PATCH] Use .short to display unidentified instructions --- opcodes/ChangeLog | 5 +++++ opcodes/mcore-dis.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 1114d48f7f..36b067983d 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +1999-05-07 Nick Clifton + + * mcore-dis.c (print_insn_mcore): Use .short to display + unidentified instructions, not .word. + 1999-04-26 Tom Tromey * aclocal.m4, configure: Updated for new version of libtool. diff --git a/opcodes/mcore-dis.c b/opcodes/mcore-dis.c index 7e3d45056b..36612a2e6f 100644 --- a/opcodes/mcore-dis.c +++ b/opcodes/mcore-dis.c @@ -126,7 +126,7 @@ print_insn_mcore (memaddr, info) break; if (op->name == 0) - fprintf (stream, ".word 0x%04x", inst); + fprintf (stream, ".short 0x%04x", inst); else { const char * name = grname[inst & 0x0F]; -- 2.11.0