10 lines
248 B
C
10 lines
248 B
C
#include <Arch/Exceptions.h>
|
|
#include <Arch/CPU.h>
|
|
#include <IO/Serial.h>
|
|
|
|
void ExceptionsHandler(ExceptionsContext* context, ExceptionsType type) {
|
|
IOSerialPutString("Exception occurred");
|
|
while (1) {
|
|
CPUWaitForInterrupt();
|
|
}
|
|
} |