Files
ksOS/Kernel/Source/Arch/Exceptions.c
T
2026-04-26 10:51:53 +04:00

8 lines
215 B
C

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