diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2025-10-03 15:45:11 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2025-10-03 15:45:11 +0200 |
| commit | 7bf2caa5c4ef9662b9da66f3f895ed538692946e (patch) | |
| tree | 35b83a3e08da983735a510fb2f3953480b155907 /docs/USAGE.md | |
| parent | 6ae0524da64f2456208efeaa32b52ab446fb7e7f (diff) | |
| download | box64-7bf2caa5c4ef9662b9da66f3f895ed538692946e.tar.gz box64-7bf2caa5c4ef9662b9da66f3f895ed538692946e.zip | |
[DYNAREC] Added BOX64_DYNAREC_NOHOTPAGE to disabled hotpage detection
Diffstat (limited to 'docs/USAGE.md')
| -rw-r--r-- | docs/USAGE.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md index 3ad9b3d0..d9a26546 100644 --- a/docs/USAGE.md +++ b/docs/USAGE.md @@ -91,6 +91,13 @@ Allow continue running a block that is unprotected and potentially dirty. * 1: Allow continue to run a dynablock that write data in the same page as code. It can gets faster in loading time of some game but can also get unexpected crashes. * 2: Will also, when it detect an HotPage, flag that page as NEVERCLEAN, and so it will not be write protected but Block build from that page will always be tested. It can be faster that way (but soem SMC case might not be trapped). +### BOX64_DYNAREC_NOHOTPAGE + +Disable detection of hot page (where code is executed and data written at the same time). + + * 0: Detect hot page [Default] + * 1: Do not detect hot page + ### BOX64_DYNAREC_FASTNAN Enable or disable fast NaN handling. Availble in WowBox64. |