about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2022-11-29 18:48:59 +0100
committerptitSeb <sebastien.chev@gmail.com>2022-11-29 18:48:59 +0100
commitc08268d0ae1977ebaaf8ecde7216461525b08238 (patch)
tree43b9edebd7594b120880bf765453fe51d8104d33 /src/tools
parent0e4d031054b7980edc806ae131ea8ce565632dbb (diff)
downloadbox64-c08268d0ae1977ebaaf8ecde7216461525b08238.tar.gz
box64-c08268d0ae1977ebaaf8ecde7216461525b08238.zip
[DYNAREC] Added BOX64_DYNAREC_CALLRET option, in rcfile too (faster handling of CALL/RET opcode, not compatible with JIT/Dynarec)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rcfile.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/rcfile.c b/src/tools/rcfile.c
index f3406301..93ef8081 100644
--- a/src/tools/rcfile.c
+++ b/src/tools/rcfile.c
@@ -75,6 +75,7 @@ ENTRYINT(BOX64_DYNAREC_STRONGMEM, box64_dynarec_strongmem, 0, 2, 2) \
 ENTRYBOOL(BOX64_DYNAREC_X87DOUBLE, box64_dynarec_x87double)         \
 ENTRYBOOL(BOX64_DYNAREC_FASTNAN, box64_dynarec_fastnan)             \
 ENTRYINT(BOX64_DYNAREC_SAFEFLAGS, box64_dynarec_safeflags, 0, 2, 2) \
+ENTRYBOOL(BOX64_DYNAREC_CALLRET, box64_dynarec_callret)             \
 ENTRYSTRING_(BOX64_NODYNAREC, box64_nodynarec)                      \
 
 #else
@@ -87,6 +88,7 @@ IGNORE(BOX64_DYNAREC_STRONGMEM)                                     \
 IGNORE(BOX64_DYNAREC_X87DOUBLE)                                     \
 IGNORE(BOX64_DYNAREC_FASTNAN)                                       \
 IGNORE(BOX64_DYNAREC_SAFEFLAGS)                                     \
+IGNORE(BOX64_DYNAREC_CALLRET)                                       \
 IGNORE(BOX64_NODYNAREC)                                             \
 
 #endif