Extend the exception handling functionality in the new MicroBlaze port.

This commit is contained in:
Richard Barry 2011-06-29 08:50:13 +00:00
parent 71b359154b
commit 832bbd38e1
4 changed files with 111 additions and 43 deletions

View file

@ -550,3 +550,11 @@ static void prvSetupHardware( void )
}
/*-----------------------------------------------------------*/
void vApplicationExceptionRegisterDump( xPortRegisterDump *xRegisterDump )
{
for( ;; )
{
portNOP();
}
}