1
0
mirror of https://github.com/EnderIce2/Fennix.git synced 2025-07-08 22:09:17 +00:00
Files
Fennix/Core/crashhandler.hpp
2023-02-28 12:58:09 +02:00

19 lines
376 B
C++

#ifndef __FENNIX_KERNEL_CRASH_HANDLER_H__
#define __FENNIX_KERNEL_CRASH_HANDLER_H__
#include <types.h>
#include <ints.hpp>
#include <cpu.hpp>
namespace CrashHandler
{
extern uintptr_t PageFaultAddress;
extern void *EHIntFrames[INT_FRAMES_MAX];
void EHPrint(const char *Format, ...);
void Handle(void *Data);
}
#endif // !__FENNIX_KERNEL_CRASH_HANDLER_H__