8 lines
199 B
C
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);
|
|
} |