- Also bump PC for ARM after a KD exception.

svn path=/trunk/; revision=34484
This commit is contained in:
ReactOS Portable Systems Group 2008-07-14 00:23:43 +00:00
parent 631d627fa7
commit cc7f0be786

View file

@ -140,6 +140,8 @@ KdpEnterDebuggerException(IN PKTRAP_FRAME TrapFrame,
/* This we can handle: simply bump EIP */
#ifdef _M_IX86
Context->Eip++;
#elif _M_ARM
Context->Pc += sizeof(ULONG);
#endif
return TRUE;
}