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/box64.pod | |
| parent | 6ae0524da64f2456208efeaa32b52ab446fb7e7f (diff) | |
| download | box64-7bf2caa5c4ef9662b9da66f3f895ed538692946e.tar.gz box64-7bf2caa5c4ef9662b9da66f3f895ed538692946e.zip | |
[DYNAREC] Added BOX64_DYNAREC_NOHOTPAGE to disabled hotpage detection
Diffstat (limited to 'docs/box64.pod')
| -rw-r--r-- | docs/box64.pod | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/box64.pod b/docs/box64.pod index 5afab383..a95613a5 100644 --- a/docs/box64.pod +++ b/docs/box64.pod @@ -197,6 +197,14 @@ Allow continue running a block that is unprotected and potentially dirty. * 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). +=item B<BOX64_DYNAREC_NOHOTPAGE> =I<0|1> + +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 + + =item B<BOX64_DYNAREC_DIV0> =I<0|1> Enable or disable the generation of division-by-zero exception. Availble in WowBox64. |