mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-30 23:18:37 -04:00
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:
parent
4108061316
commit
8b0ccf1444
5 changed files with 75 additions and 15 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue