Chris Johns commented on a discussion on 
cpukit/libdebugger/rtems-debugger-powerpc.c: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/163#note_110526

 > +                frame->EXC_LR, frame->EXC_CR, frame->EXC_XER, 
 > frame->EXC_CTR);
 > +  gpr = &frame->GPR0;
 > +  for (r= 0; r < 32; r += 4, gpr += 4) {
 > +    target_printk("[} R%-2d = %08" PRIx32 " R%-2d = %08" PRIx32 \
 > +                  " R%-2d = %08" PRIx32 " R%-2d = %08" PRIx32 "\n",
 > +                  r, *gpr, r + 1, *(gpr + 1), r + 2,
 > +                  *(gpr + 2), r + 3, *(gpr + 3));
 > +  }
 > +}
 > +
 > +/*
 > + * NXP BOOK_EUM.PDF Programmeing Note, Chapter 9 Debug Facilities
 > + *
 > + * There are two classes of debug exception types:
 > + *
 > + *   Type 1: exception before instruction

If you mean the `Type 1:`. no it is indented for each of the types.

-- 
View it on GitLab: 
https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/163#note_110526
You're receiving this email because of your account on gitlab.rtems.org.


_______________________________________________
bugs mailing list
[email protected]
http://lists.rtems.org/mailman/listinfo/bugs

Reply via email to