about summary refs log tree commit diff stats
path: root/src/core.c
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2024-12-02 23:58:20 +0800
committerGitHub <noreply@github.com>2024-12-02 16:58:20 +0100
commit14bd1368cc34dc2b6d2c722fe6fa3e66c2566f67 (patch)
tree0b6ed90857a84b01fad76eace673cbeed57b8266 /src/core.c
parent415fc458be52095395236d80a7c402cb77b0b718 (diff)
downloadbox64-14bd1368cc34dc2b6d2c722fe6fa3e66c2566f67.tar.gz
box64-14bd1368cc34dc2b6d2c722fe6fa3e66c2566f67.zip
[RV64_DYNAREC] Added simple opcodes fusion as "native flags" (#2102)
* [RV64_DYNAREC] Added simple opcodes fusion as "native flags"

* Disable 16bit CMOV

* review
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core.c b/src/core.c
index ebf88caf..007f578a 100644
--- a/src/core.c
+++ b/src/core.c
@@ -962,6 +962,9 @@ void LoadLogEnv()
             box64_dynarec_x87double = 1;
             box64_dynarec_div0 = 1;
             box64_dynarec_callret = 0;
+            #ifdef RV64
+            box64_dynarec_nativeflags = 0;
+            #endif
             printf_log(LOG_INFO, "Dynarec will compare it's execution with the interpreter (super slow, only for testing)\n");
         }
     }