mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 22:59:47 -06:00
MachineContext: Correct CTX_LR for Apple ARM64
This commit is contained in:
@ -69,7 +69,7 @@ typedef x86_thread_state64_t SContext;
|
|||||||
#elif _M_ARM_64
|
#elif _M_ARM_64
|
||||||
typedef arm_thread_state64_t SContext;
|
typedef arm_thread_state64_t SContext;
|
||||||
#define CTX_REG(x) __x[x]
|
#define CTX_REG(x) __x[x]
|
||||||
#define CTX_LR __x[30]
|
#define CTX_LR __lr
|
||||||
#define CTX_SP __sp
|
#define CTX_SP __sp
|
||||||
#define CTX_PC __pc
|
#define CTX_PC __pc
|
||||||
#else
|
#else
|
||||||
|
Reference in New Issue
Block a user