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-04-26 20:47:36 +0200
commitb0b9ec42e42d491a90352aea040eb6ffb319cdf9 (patch)
tree5ab6fb7f16a2c95a0b100dde0e1e006109679e11 /src/ARMJIT_x64/ARMJIT_Compiler.h
parent47b44a6be81c122eac6fba7903d0ad0e6726ffc3 (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
{