mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-31 16:57:58 +00:00
Refactor ExceptionHandler
This commit is contained in:
parent
1bc7c4b4dd
commit
9ab246f8c4
@ -37,9 +37,11 @@
|
|||||||
#include "crashhandler.hpp"
|
#include "crashhandler.hpp"
|
||||||
#include "../kernel.h"
|
#include "../kernel.h"
|
||||||
|
|
||||||
extern "C" nsa void ExceptionHandler(void *Data)
|
void HandleException(CPU::ExceptionFrame *Frame);
|
||||||
|
|
||||||
|
extern "C" nsa void ExceptionHandler(void *Frame)
|
||||||
{
|
{
|
||||||
CrashHandler::Handle(Data);
|
HandleException((CPU::ExceptionFrame *)Frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
namespace Interrupts
|
namespace Interrupts
|
||||||
|
Loading…
x
Reference in New Issue
Block a user