diff options
Diffstat (limited to 'docs/USAGE.md')
| -rw-r--r-- | docs/USAGE.md | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 32744566..5c67f0f8 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -197,11 +197,21 @@ Detect MonoBleedingEdge and apply conservative settings * 0 : Don't detect MonoBleedingEdge * 1 : Detect MonoBleedingEdge, and apply BIGBLOCK=0 STRONGMEM=1 if detected (Default) +#### BOX64_DYNAREC_JVM * +Detect libjvm and apply conservative settings +* 0 : Don't detect libjvm +* 1 : Detect libjvm, and apply BIGBLOCK=0 STRONGMEM=1 if detected (Default) + #### BOX64_DYNAREC_WAIT * Behavior with FillBlock is not availble (FillBlock build Dynarec blocks and is not multithreaded) * 0 : Dynarec will not wait for FillBlock to ready and use Interpreter instead (might speedup a bit massive multithread or JIT programs) * 1 : Dynarec will wait for FillBlock to be ready (Default) +#### BOX64_DYNAREC_MISSING * +Dynarec print the missing opcodes +* 0 : not print the missing opcode (Default, unless DYNAREC_LOG>=1 or DYNAREC_DUMP>=1 is used) +* 1 : Will print the missing opcodes + #### BOX64_SSE_FLUSHTO0 * Handling of SSE Flush to 0 flags * 0 : Just track the flag (Default) @@ -311,3 +321,7 @@ Those variables are only valid inside a rcfile: #### BOX64_EXIT * 0 : Nothing special * 1 : Just exit, don't try to run the program + +#### BOX64_RESERVE_HIGH +* 0 : Don't try to pe-reserve high memory (beyond 47bits) (Default) +* 1 : Try to reserve (without allocating it) memory beyond 47bits (seems unstable) |