mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
MachineContext: Correct CTX_LR for Apple ARM64
This commit is contained in:
parent
2c5d11cace
commit
c385e7e57b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ typedef x86_thread_state64_t SContext;
|
|||
#elif _M_ARM_64
|
||||
typedef arm_thread_state64_t SContext;
|
||||
#define CTX_REG(x) __x[x]
|
||||
#define CTX_LR __x[30]
|
||||
#define CTX_LR __lr
|
||||
#define CTX_SP __sp
|
||||
#define CTX_PC __pc
|
||||
#else
|
||||
|
|
Loading…
Add table
Reference in a new issue