[RZ/A1H] first release - change InterruptManager.cpp for CA9

RZ/A1H has GIC instead of NVIC. InterruptManger assumes
NVIC only, so temporarily ifdef guarded in order to pass
the compilation.
pull/594/head
Takayuki Kurosawa 2014-10-24 11:38:53 +09:00
parent 55ddb7f85c
commit cff29fd8d8
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,6 @@
#include "cmsis.h"
#if defined(NVIC_NUM_VECTORS)
#include "InterruptManager.h"
#include <string.h>
@ -87,3 +90,4 @@ void InterruptManager::static_irq_helper() {
} // namespace mbed
#endif