13 lines
245 B
C
13 lines
245 B
C
#include <log.h>
|
|
|
|
void gilbraltar_interrupt_handler(void) {
|
|
gilbraltar_log(DEBUG, "Interruption.\r\n");
|
|
|
|
while (1)
|
|
__asm__ __volatile("wfi");
|
|
}
|
|
|
|
void gilbraltar_secure_monitor_handler(void) {
|
|
while (1)
|
|
__asm__ __volatile("wfi");
|
|
}
|