mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-02 19:09:19 +00:00
Fix InterruptFrames for aarch64
This commit is contained in:
@ -301,7 +301,7 @@ namespace Interrupts
|
||||
#elif defined(a32)
|
||||
InterruptFrames[0] = (void *)Frame->eip;
|
||||
#elif defined(aa64)
|
||||
InterruptFrames[0] = (void *)Frame->elr_el1;
|
||||
InterruptFrames[0] = (void *)Frame->pc;
|
||||
#endif
|
||||
|
||||
CPUData *CoreData = GetCurrentCPU();
|
||||
|
Reference in New Issue
Block a user