aboutsummaryrefslogtreecommitdiff
path: root/opcodes/arm-dis.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-05-15 19:25:22 +0000
committerNick Clifton <nickc@redhat.com>2000-05-15 19:25:22 +0000
commit322f2c4579460de0fe10c89e9cd45588ae57b730 (patch)
treeebbb4a70bee123cdda0196ba5f6b838e1a4c60ba /opcodes/arm-dis.c
parent47cf603ed45d09dceda47b6da42a1d88a141ad82 (diff)
downloadgdb-322f2c4579460de0fe10c89e9cd45588ae57b730.zip
gdb-322f2c4579460de0fe10c89e9cd45588ae57b730.tar.gz
gdb-322f2c4579460de0fe10c89e9cd45588ae57b730.tar.bz2
Add support for _x and _s flags to MSR instruction
Diffstat (limited to 'opcodes/arm-dis.c')
-rw-r--r--opcodes/arm-dis.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/opcodes/arm-dis.c b/opcodes/arm-dis.c
index f131ada..a3e7112 100644
--- a/opcodes/arm-dis.c
+++ b/opcodes/arm-dis.c
@@ -420,7 +420,7 @@ print_insn_arm (pc, info, given)
break;
case 'C':
- switch (given & 0x00090000)
+ switch (given & 0x000f0000)
{
default:
func (stream, "_???");
@@ -429,10 +429,16 @@ print_insn_arm (pc, info, given)
func (stream, "_all");
break;
case 0x10000:
- func (stream, "_ctl");
+ func (stream, "_c");
+ break;
+ case 0x20000:
+ func (stream, "_x");
+ break;
+ case 0x40000:
+ func (stream, "_s");
break;
case 0x80000:
- func (stream, "_flg");
+ func (stream, "_f");
break;
}
break;