diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-01-29 16:14:27 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-01-29 16:14:27 +0100 |
| commit | 5db6264d8f79628108cf906f267889647bd5ad45 (patch) | |
| tree | 4b271043adbcbb8cebf22ccedb38c7f74e483c83 /docs | |
| parent | 4ce63c8cafbfb5fc07598b34e0525268b0a19285 (diff) | |
| download | box64-5db6264d8f79628108cf906f267889647bd5ad45.tar.gz box64-5db6264d8f79628108cf906f267889647bd5ad45.zip | |
[DYNAREC] Made FASTROUND the default (faster, less accurate)
Diffstat (limited to 'docs')
| -rwxr-xr-x | docs/USAGE.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 9f6478b2..03b6ae94 100755 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -154,12 +154,12 @@ Force the use of Double for x87 emulation #### BOX64_DYNAREC_FASTNAN * Enable/Disable generation of -NAN * 0 : Generate -NAN like on x86 -* 1 : Don't do anything special with NAN, to go as fast as possible (default) +* 1 : Don't do anything special with NAN, to go as fast as possible (default, faster) #### BOX64_DYNAREC_FASTROUND * Enable/Disable generation of precise x86 rounding -* 0 : Generate float/double -> int rounding like on x86 (default) -* 1 : Don't do anything special with edge case Rounding, to go as fast as possible (no INF/NAN/Overflow -> MIN_INT conversion) +* 0 : Generate float/double -> int rounding like on x86 +* 1 : Don't do anything special with edge case Rounding, to go as fast as possible (no INF/NAN/Overflow -> MIN_INT conversion) (default, faster) #### BOX64_DYNAREC_SAFEFLAGS * Handling of flags on CALL/RET opcodes |