mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 07:19:20 +00:00
Refactor ExceptionHandler
This commit is contained in:
@ -37,9 +37,11 @@
|
||||
#include "crashhandler.hpp"
|
||||
#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
|
||||
|
Reference in New Issue
Block a user