about summary refs log tree commit diff stats
path: root/docs/box64.pod
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-09-08 11:27:37 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-09-08 11:27:37 +0200
commite7d2cf55389b45afe37beb6c4996c99412da1605 (patch)
treee2ff1b206f65f5ef6edf90e9fc5968eab89f64c3 /docs/box64.pod
parent427f1b8c558b9ef7529aed7c69fe5619ea613b0f (diff)
downloadbox64-e7d2cf55389b45afe37beb6c4996c99412da1605.tar.gz
box64-e7d2cf55389b45afe37beb6c4996c99412da1605.zip
[DOCS] Some small fixing / precision in a few doc items
Diffstat (limited to 'docs/box64.pod')
-rw-r--r--docs/box64.pod12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/box64.pod b/docs/box64.pod
index 0799422f..cad4a3f8 100644
--- a/docs/box64.pod
+++ b/docs/box64.pod
@@ -150,7 +150,7 @@ Enable/disable the Dynamic Recompiler (a.k.a DynaRec). This option defaults to 1
 Generate aligned atomics only (only available on Arm64 for now). Availble in WowBox64.
 
  * 0 : Generate unaligned atomics handling code. [Default]
- * 1 : Generate aligned atomics only, which is faster and smaller code size, but will cause SIGBUS for LOCK prefixed opcodes operating on aligned data addresses. 
+ * 1 : Generate aligned atomics only, which is faster and smaller code size, but will cause SIGBUS for LOCK prefixed opcodes operating on unaligned data addresses. 
 
 
 =item B<BOX64_DYNAREC_BIGBLOCK> =I<0|1|2|3>
@@ -201,7 +201,7 @@ Allow continue running a block that is unprotected and potentially dirty.
 
 Enable or disable the generation of division-by-zero exception. Availble in WowBox64.
 
- * 0 : Do not generate thr division-by-zero exception. [Default]
+ * 0 : Do not generate the division-by-zero exception. [Default]
  * 1 : Generate the division-by-zero exception. 
 
 
@@ -305,11 +305,11 @@ Generate map file for Linux perf tool.
 
 =item B<BOX64_DYNAREC_SAFEFLAGS> =I<0|1|2>
 
-Behaviour of flags emulation on CALL/RET opcodes. Availble in WowBox64.
+Behaviour of flags emulation on CALL/RET opcodes and other edge cases. Availble in WowBox64.
 
  * 0 : Treat CALL/RET as if it never needs any flags. 
  * 1 : Most of RETs will need flags, most of CALLs will not. [Default]
- * 2 : All CALL/RET will need flags. 
+ * 2 : All CALL/RET will need flags. All edge cases are also handled. 
 
 
 =item B<BOX64_DYNAREC_STRONGMEM> =I<0|1|2|3>
@@ -718,10 +718,10 @@ Always show SIGSEGV signal detailes.
 
 =item B<BOX64_SSE_FLUSHTO0> =I<0|1>
 
-Behaviour of SSE Flush to 0 flags. Availble in WowBox64.
+Behaviour of SSE Flush to 0 flags. Also tracking SSE exception flags Availble in WowBox64.
 
  * 0 : Just track the flag. [Default]
- * 1 : Apply SSE Flush to 0 flag directly. 
+ * 1 : Apply SSE Flush to 0 flag directly. Also reflect SSE exception flags in Dynarec (if available) 
 
 
 =item B<BOX64_SSE42> =I<0|1>