diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 14:50:01 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-02-19 14:50:01 +0100 |
| commit | 4610f451e99610043461401f4c9acd3de408a02d (patch) | |
| tree | c8f2c64e68afb731f0419c1fcac03743184531cd /docs | |
| parent | 0810859c21fdc866afb1645b4bb207df386fcb58 (diff) | |
| download | box64-4610f451e99610043461401f4c9acd3de408a02d.tar.gz box64-4610f451e99610043461401f4c9acd3de408a02d.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 bc2bdea3..17fadb61 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 |