Files
ksOS/Kernel/Source/Arch/Exceptions.c
T
2026-04-23 23:14:24 +04:00

8 lines
199 B
C

#include <Arch/Exceptions.h>
#include <Arch/CPU.h>
#include <IO/Serial.h>
#include <OS/Panic.h>
void ExceptionsHandler(ExceptionsContext* frame, ExceptionsType type) {
OSPanicException(frame);
}