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