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

10 lines
250 B
C

#include <Arch/Exceptions.h>
#include <Arch/CPU.h>
#include <IO/IOSerial.h>
void ExceptionsHandler(ExceptionsContext* context, ExceptionsType type) {
IOSerialPutString("Exception occurred");
while (1) {
CPUWaitForInterrupt();
}
}