forked from Imagelibrary/rtems
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* m68k-stub.c: Convert to using c99 fixed size types.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
|
||||
|
||||
* m68k-stub.c: Convert to using c99 fixed size types.
|
||||
|
||||
2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am: Reflect having moved automake/.
|
||||
|
||||
@@ -1072,9 +1072,9 @@ void handle_exception(int exceptionVector)
|
||||
{
|
||||
if (remote_debug)
|
||||
printf("frame at 0x%x has pc=0x%x, except#=%d\n",
|
||||
(unsigned32) frame,
|
||||
(unsigned32) frame->exceptionPC,
|
||||
(unsigned32) frame->exceptionVector);
|
||||
(uint32_t) frame,
|
||||
(uint32_t) frame->exceptionPC,
|
||||
(uint32_t) frame->exceptionVector);
|
||||
if (frame->exceptionPC == newPC) break; /* bingo! a match */
|
||||
/*
|
||||
* for a breakpoint instruction, the saved pc may
|
||||
@@ -1113,7 +1113,7 @@ void handle_exception(int exceptionVector)
|
||||
{
|
||||
if (remote_debug)
|
||||
printf("frame at 0x%x has pc=0x%x, except#=%d\n",
|
||||
(unsigned32) frame,
|
||||
(uint32_t) frame,
|
||||
frame->exceptionPC,
|
||||
frame->exceptionVector);
|
||||
/* re-use the last frame, we're skipping it (longjump?)*/
|
||||
|
||||
Reference in New Issue
Block a user