smol-gilbraltar/exception_handler.c

7 lines
148 B
C
Raw Normal View History

2024-12-20 22:45:12 +00:00
#include <exception_handler.h>
void gilbraltar_exception_handler(uint64_t exn, struct frame *frame) {
while (1)
__asm__ __volatile("wfi");
}