aboutsummaryrefslogtreecommitdiff
path: root/gdb/h8300-tdep.c
diff options
context:
space:
mode:
authorAndrey Volkov <avolkov@transas.com>2002-05-17 18:52:58 +0000
committerAndrey Volkov <avolkov@transas.com>2002-05-17 18:52:58 +0000
commit906709f48c964236ec3b789a69689fddd9bfae21 (patch)
tree0dd6d62d57a80a15dd0ad50533dddae122ddc78b /gdb/h8300-tdep.c
parent3b02cf92817ecdaee31b9b46ea67e0b0821b4340 (diff)
downloadfsf-binutils-gdb-906709f48c964236ec3b789a69689fddd9bfae21.zip
fsf-binutils-gdb-906709f48c964236ec3b789a69689fddd9bfae21.tar.gz
fsf-binutils-gdb-906709f48c964236ec3b789a69689fddd9bfae21.tar.bz2
*h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
Diffstat (limited to 'gdb/h8300-tdep.c')
-rw-r--r--gdb/h8300-tdep.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/h8300-tdep.c b/gdb/h8300-tdep.c
index 7d79fcc..c642386 100644
--- a/gdb/h8300-tdep.c
+++ b/gdb/h8300-tdep.c
@@ -838,8 +838,10 @@ h8300_print_register_hook (int regno)
frame_register_read (selected_frame, regno, b);
l = b[REGISTER_VIRTUAL_SIZE (CCR_REGNUM) - 1];
printf_unfiltered ("\t");
- printf_unfiltered ("I-%d - ", (l & 0x80) != 0);
- printf_unfiltered ("H-%d - ", (l & 0x20) != 0);
+ printf_unfiltered ("I-%d ", (l & 0x80) != 0);
+ printf_unfiltered ("UI-%d ", (l & 0x40) != 0);
+ printf_unfiltered ("H-%d ", (l & 0x20) != 0);
+ printf_unfiltered ("U-%d ", (l & 0x10) != 0);
N = (l & 0x8) != 0;
Z = (l & 0x4) != 0;
V = (l & 0x2) != 0;