Files
ksOS/Kernel/Source/Arch/Exceptions.c
T

10 lines
279 B
C

#include <Arch/Exceptions.h>
#include <Arch/GIC.h>
#include <OS/Panic.h>
Address ExceptionsHandler(ExceptionsContext* frame, ExceptionsType type) {
if (type == ExceptionsIRQEl1h || type == ExceptionsIRQEl064) return GICDispatch(frame, type);
OSPanicException(frame);
}