mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* Change literal regno in h8300-tdep.c
This commit is contained in:
@ -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.
|
||||||
|
@ -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);
|
||||||
|
Reference in New Issue
Block a user