7 lines
148 B
C
7 lines
148 B
C
|
#include <exception_handler.h>
|
||
|
|
||
|
void gilbraltar_exception_handler(uint64_t exn, struct frame *frame) {
|
||
|
while (1)
|
||
|
__asm__ __volatile("wfi");
|
||
|
}
|