about summary refs log tree commit diff stats
path: root/docs/USAGE.md
diff options
context:
space:
mode:
authorjosch <j.schauer@email.de>2023-03-26 08:59:00 +0100
committerGitHub <noreply@github.com>2023-03-26 09:59:00 +0200
commit2ea036e02c3fe1374d32c23f795879623773a5ef (patch)
treed6e66a89f5d54d11875a3a65b41356694442f70f /docs/USAGE.md
parentf58ac3e9bf15251d902f22abea9685e7cbe55b2b (diff)
downloadbox64-2ea036e02c3fe1374d32c23f795879623773a5ef.tar.gz
box64-2ea036e02c3fe1374d32c23f795879623773a5ef.zip
fix some spelling mistakes (#640)
Diffstat (limited to 'docs/USAGE.md')
-rwxr-xr-xdocs/USAGE.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/USAGE.md b/docs/USAGE.md
index 67a43f09..354f3070 100755
--- a/docs/USAGE.md
+++ b/docs/USAGE.md
@@ -38,7 +38,7 @@ Enables/Disables the logging of `dlsym` errors.
 #### BOX64_TRACE_FILE *

 Send all log and trace to a file instead of `stdout`

 Also, if name contains `%pid` then this is replaced by the actual PID of box64 instance

-End the filename with `+` to have thetrace appended instead of overwriten

+End the filename with `+` to have thetrace appended instead of overwritten

 Use `stderr` to use this instead of default `stdout` 

 

 #### BOX64_TRACE *

@@ -130,7 +130,7 @@ Enables/Disables trace for generated code.
  * 1 : Enable trace for generated code (like regular Trace, this will slow down the program a lot and generate huge logs).

 

 #### BOX64_NODYNAREC  *

-Forbid dynablock creation in the interval specified (helpfull for debugging behaviour difference between Dynarec and Interpretor)

+Forbid dynablock creation in the interval specified (helpfull for debugging behaviour difference between Dynarec and Interpreter)

  * 0xXXXXXXXX-0xYYYYYYYY : define the interval where dynablock cannot start (inclusive-exclusive)

 

 #### BOX64_DYNAREC_BIGBLOCK *

@@ -178,12 +178,12 @@ Optimisation of CALL/RET opcodes (not compatible with jit/dynarec/smc)
 * 1 : Try to optimized CALL/RET, skipping the use of the JumpTable when possible (will crash if blacks are invalidate, so probably incompatible with JIT/Dynarec)

 

 #### BOX64_DYNAREC_HOTPAGE *

-Handling of HotPage (Page beeing both executed and writen)

+Handling of HotPage (Page being both executed and written)

 * 0 : Don't track hotpage

-* 1-255 : Track HotPage, and disable execution of a page beeing writen for N attempts (default is 4)

+* 1-255 : Track HotPage, and disable execution of a page being written for N attempts (default is 4)

 

 #### BOX64_DYNAREC_FASTPAGE *

-Will use a faster handling of HotPage (Page beeing both executed and writen)

+Will use a faster handling of HotPage (Page being both executed and written)

 * 0 : use regular hotpage (Default)

 * 1 : Use faster hotpage, taking the risk of running obsolete JIT code (might be faster, but more prone to crash)