From 67006f28092a407d31bcd1013f62900e7f52bbc3 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Sat, 2 Mar 2024 10:10:42 +0100 Subject: [LA64_DYNAREC] Added xSavedSP to emitter for later use --- src/dynarec/la64/la64_emitter.h | 1 + system/box64.box64rc | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/dynarec/la64/la64_emitter.h b/src/dynarec/la64/la64_emitter.h index 894c8b35..b840b496 100644 --- a/src/dynarec/la64/la64_emitter.h +++ b/src/dynarec/la64/la64_emitter.h @@ -51,6 +51,7 @@ f24-f31 fs0-fs7 Static registers Callee #define xR15 30 #define xFlags 31 #define xRIP 20 +#define xSavedSP 22 // function to move from x86 regs number to LA64 reg number #define TO_LA64(A) (((A)>7)?((A)+15):((A)+12)) // 32bits version diff --git a/system/box64.box64rc b/system/box64.box64rc index 302e6dfa..58cecc78 100644 --- a/system/box64.box64rc +++ b/system/box64.box64rc @@ -149,14 +149,14 @@ BOX64_EMULATED_LIBS=libudev.so.0 [streaming_client] BOX64_EMULATED_LIBS=libSDL2-2.0.so.0:libSDL2_ttf-2.0.so.0 -[steamwebhelper] -BOX64_NOSANDBOX=1 -BOX64_INPROCESSGPU=1 -BOX64_LOG=0 -BOX64_MALLOC_HACK=2 -BOX64_DYNAREC_BIGBLOCK=0 -BOX64_DYNAREC_CALLRET=1 -BOX64_DYNAREC_STRONGMEM=2 +#[steamwebhelper] +#BOX64_NOSANDBOX=1 +#BOX64_INPROCESSGPU=1 +#BOX64_LOG=0 +#BOX64_MALLOC_HACK=2 +#BOX64_DYNAREC_BIGBLOCK=0 +#BOX64_DYNAREC_CALLRET=1 +#BOX64_DYNAREC_STRONGMEM=2 [steamwebhelper.exe] BOX64_DYNAREC_STRONGMEM=1 -- cgit 1.4.1