New MicroBlaze port: Added a FreeRTOS exception handler, and installed it in each position in the exception table. The handler itself does not do much yet.

This commit is contained in:
Richard Barry 2011-06-24 18:50:45 +00:00
parent 4108061316
commit 8b0ccf1444
5 changed files with 75 additions and 15 deletions

View file

@ -533,16 +533,16 @@ static void prvSetupHardware( void )
taskDISABLE_INTERRUPTS();
vParTestInitialise();
#ifdef MICROBLAZE_EXCEPTIONS_ENABLED
#if MICROBLAZE_EXCEPTIONS_ENABLED == 1
microblaze_enable_exceptions();
#endif
#ifdef XPAR_MICROBLAZE_USE_ICACHE
#if XPAR_MICROBLAZE_USE_ICACHE == 1
microblaze_invalidate_icache();
microblaze_enable_icache();
#endif
#ifdef XPAR_MICROBLAZE_USE_DCACHE
#if XPAR_MICROBLAZE_USE_DCACHE == 1
microblaze_invalidate_dcache();
microblaze_enable_dcache();
#endif