diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 14:50:01 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-20 20:25:21 +0100 |
| commit | 5d42d9212fde49278e0ad0167edd77755a2fbcd9 (patch) | |
| tree | 8d77c0d42c421f6c729f4c1cad65a5484629c900 /docs | |
| parent | 4a1e05524affadab3ba5a75f79c115a0743e483f (diff) | |
| download | box64-5d42d9212fde49278e0ad0167edd77755a2fbcd9.tar.gz box64-5d42d9212fde49278e0ad0167edd77755a2fbcd9.zip | |
Improved convertion to/from 80bits double, and added BOX64_X87_NO80BITS to not handle them
Diffstat (limited to 'docs')
| -rwxr-xr-x | docs/USAGE.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index e961ebb2..fa908e46 100755 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -187,6 +187,16 @@ Behavior with FillBlock is not availble (FillBlock build Dynarec blocks and is n * 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_SSE_FLUSHTO0 * +Handling of SSE Flush to 0 flags +* 0 : Just track the flag (Default) +* 1 : Direct apply of SSE Flush to 0 flag + +#### BOX64_X87_NO80BITS * +Handling of x87 80bits long double +* 0 : Try to handle 80bits long double as precise as possible (Default) +* 1 : Handle them as double + #### BOX64_LIBGL * * libXXXX set the name for libGL (defaults to libGL.so.1). * /PATH/TO/libGLXXX : Sets the name and path for libGL |