7fcb50587e
fix: TimerReset in GIC.c now uses kTimerFrequency
12 lines
314 B
C
12 lines
314 B
C
#include <Arch/Exceptions.h>
|
|
#include <Arch/CPU.h>
|
|
#include <Arch/GIC.h>
|
|
#include <IO/Serial.h>
|
|
#include <OS/Panic.h>
|
|
|
|
void ExceptionsHandler(ExceptionsContext* frame, ExceptionsType type) {
|
|
if (type == ExceptionsIRQEl1h || type == ExceptionsIRQEl064) return GICDispatch(type);
|
|
OSPanicException(frame);
|
|
}
|
|
|