aboutsummaryrefslogtreecommitdiff
path: root/src/ARMJIT_x64/ARMJIT_Compiler.h
diff options
context:
space:
mode:
authorRSDuck <RSDuck@users.noreply.github.com>2020-04-26 20:47:36 +0200
committerRSDuck <rsduck@users.noreply.github.com>2020-06-16 11:59:09 +0200
commit5a3607bc688b42cc1da886bd2afc58d7aa4733be (patch)
tree31f33790b66298bf7c087fc73f44efc296707886 /src/ARMJIT_x64/ARMJIT_Compiler.h
parent6d217e1010f3aed73a86d5dff2f3f46a3ca60cb5 (diff)
don't use param registers for ReadBanked/WriteBanked
should fix linux build
Diffstat (limited to 'src/ARMJIT_x64/ARMJIT_Compiler.h')
-rw-r--r--src/ARMJIT_x64/ARMJIT_Compiler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ARMJIT_x64/ARMJIT_Compiler.h b/src/ARMJIT_x64/ARMJIT_Compiler.h
index 2230eb8..e0a4978 100644
--- a/src/ARMJIT_x64/ARMJIT_Compiler.h
+++ b/src/ARMJIT_x64/ARMJIT_Compiler.h
@@ -16,6 +16,7 @@ const Gen::X64Reg RCPSR = Gen::R15;
const Gen::X64Reg RSCRATCH = Gen::EAX;
const Gen::X64Reg RSCRATCH2 = Gen::EDX;
const Gen::X64Reg RSCRATCH3 = Gen::ECX;
+const Gen::X64Reg RSCRATCH4 = Gen::R8;
struct ComplexOperand
{