diff options
| author | josch <j.schauer@email.de> | 2023-03-26 08:59:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-26 09:59:00 +0200 |
| commit | 2ea036e02c3fe1374d32c23f795879623773a5ef (patch) | |
| tree | d6e66a89f5d54d11875a3a65b41356694442f70f /docs | |
| parent | f58ac3e9bf15251d902f22abea9685e7cbe55b2b (diff) | |
| download | box64-2ea036e02c3fe1374d32c23f795879623773a5ef.tar.gz box64-2ea036e02c3fe1374d32c23f795879623773a5ef.zip | |
fix some spelling mistakes (#640)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/CHANGELOG.md | 16 | ||||
| -rwxr-xr-x | docs/USAGE.md | 10 |
2 files changed, 13 insertions, 13 deletions
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 5ba0203a..3b2109c2 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,6 @@ v0.2.2 ====== -* Added a hacked version for overriden malloc/free functions, enabling libcef (and derivative) to work. +* Added a hacked version for overridden malloc/free functions, enabling libcef (and derivative) to work. => Steam Large mode and new BigPicture are working => Heroic Launcher is working * Added rcfile handling: box64 now read `/etc/box64.box64rc` and `~/.box64rc` and apply per process parameters @@ -22,7 +22,7 @@ v0.2.2 * Some special cases fixes for dlopen (fixes deadcells, maybe others too) * Improved mmap mapping, espcially with MAP_32BITS flag * More wrapped functions and syscalls -* Lots of improvment in the Rounding of float & double (Dynarec and Interpretor), and proper handling of denormals when converting to/from 80 bits long double +* Lots of improvment in the Rounding of float & double (Dynarec and Interpreter), and proper handling of denormals when converting to/from 80 bits long double * Added specific suppport for RK3588 board (needed some hack in signal handling, probably due to the use of a non mainlined kernel) * More support on the RV64 port * More support to build under musl environment @@ -30,7 +30,7 @@ v0.2.2 v0.2.0 ====== * Wrapped more vulkan function, dxvk 2.0 now works -* Added support for overriden malloc/free functions +* Added support for overridden malloc/free functions * Refactor Dynarec memory management, reducing memory footprint (from 20% to 40% of Dynarec size) * Improved elf loader * Improved dlsym handling with RTLD_NEXT @@ -80,8 +80,8 @@ v0.1.8 * Don't quit on unsupported syscall, return -1 / ENOSYS error * Added some more Syscall * Wrapped Vulkan library. Vulkan and dxvk now supported! -* Support building on PPC64LE (interpretor only) -* Added support for Risc-V (interpretor only) +* Support building on PPC64LE (interpreter only) +* Added support for Risc-V (interpreter only) v0.1.6 ====== @@ -97,7 +97,7 @@ v0.1.6 * Some residual fixes on thread attribute handling * Better handling of app that want 32bits jumps, like unity3d/mono (thanks mogery) * More ARM hardware option in CMake (Phytium, NX...) -* Added loongarch64 support (interpretor only) +* Added loongarch64 support (interpreter only) * Some fixes to elfloader * Added a mecanism to cancel a Dynarec block construction if it triggers a segfault (instead of a crash) @@ -120,7 +120,7 @@ v0.1.4 v0.1.2 ====== * OpenSource! -* A few more opcode added to the Interpretor and the Dynarec +* A few more opcode added to the Interpreter and the Dynarec * Improved Native Function calling * Added some function to limit allocated memory to 47bits space (for Wine) * Improved and Fixed the functions to limit allocated memory to 32bits space @@ -134,7 +134,7 @@ v0.1.0 * Some fixes to a few function signature * Improvement to Signal handling, and internal mutex handling * A few fixes to some dynarec opcodes -* A few fixes to some interpretor opcodes +* A few fixes to some interpreter opcodes v0.0.8 ====== 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) |