mirror of https://github.com/nmlgc/ReC98.git
[Readme] Discover another potential workaround for the TLINK `Loader error`
OK, *one* more for modern 32-bit Windows before the support tiers go into effect, bringing this delivery to a nice 69 commits. Completes P0285, funded by [Anonymous] and iruleatgames.
This commit is contained in:
parent
5356d0e5b6
commit
23fc9e7b04
20
README.md
20
README.md
|
@ -187,17 +187,21 @@ On 64-bit x86, the build process uses Tup for minimal parallel rebuilds, but all
|
|||
|
||||
* TLINK fails with `Loader error (0000): Unrecognized Error` on 32-bit Windows ≥Vista
|
||||
|
||||
This can be fixed by configuring the NTVDM DPMI driver to be loaded into conventional memory rather than upper memory, by editing `%WINDIR%\System32\autoexec.nt`:
|
||||
Two known causes:
|
||||
|
||||
```patch
|
||||
REM Install DPMI support
|
||||
-LH %SystemRoot%\system32\dosx
|
||||
+%SystemRoot%\system32\dosx
|
||||
```
|
||||
* Try configuring the NTVDM DPMI driver to be loaded into conventional memory rather than upper memory, by editing `%WINDIR%\System32\autoexec.nt`:
|
||||
|
||||
Requires a reboot after that edit to take effect.
|
||||
```patch
|
||||
REM Install DPMI support
|
||||
-LH %SystemRoot%\system32\dosx
|
||||
+%SystemRoot%\system32\dosx
|
||||
```
|
||||
|
||||
([Source](http://oshow.txt-nifty.com/blog/2008/11/loader-error-00.html))
|
||||
Requires a reboot after that edit to take effect.
|
||||
|
||||
([Source](http://oshow.txt-nifty.com/blog/2008/11/loader-error-00.html))
|
||||
|
||||
* Try building in a regular `cmd.exe` shell instead of PowerShell or Bash.
|
||||
|
||||
## Contribution guidelines
|
||||
|
||||
|
|
Loading…
Reference in New Issue