* Change literal regno in h8300-tdep.c

This commit is contained in:
Andrey Volkov
2002-05-17 18:44:13 +00:00
parent e0e9281e47
commit 6e591d68a5
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-05-17 Andrey Volkov <avolkov@transas.com>
* h8300-tdep.c: Change literal regnums to REGNO.
2002-05-17 Jim Blandy <jimb@redhat.com> 2002-05-17 Jim Blandy <jimb@redhat.com>
* NEWS: Note addition of macro support. * NEWS: Note addition of macro support.

View File

@ -829,14 +829,14 @@ _initialize_h8300m (void)
void void
h8300_print_register_hook (int regno) h8300_print_register_hook (int regno)
{ {
if (regno == 8) if (regno == CCR_REGNUM)
{ {
/* CCR register */ /* CCR register */
int C, Z, N, V; int C, Z, N, V;
unsigned char b[4]; unsigned char b[REGISTER_SIZE];
unsigned char l; unsigned char l;
frame_register_read (selected_frame, regno, b); frame_register_read (selected_frame, regno, b);
l = b[REGISTER_VIRTUAL_SIZE (8) - 1]; l = b[REGISTER_VIRTUAL_SIZE (CCR_REGNUM) - 1];
printf_unfiltered ("\t"); printf_unfiltered ("\t");
printf_unfiltered ("I-%d - ", (l & 0x80) != 0); printf_unfiltered ("I-%d - ", (l & 0x80) != 0);
printf_unfiltered ("H-%d - ", (l & 0x20) != 0); printf_unfiltered ("H-%d - ", (l & 0x20) != 0);