Originally posted by dandy8577139 at 2007-8-15 05:23 PM:
Under DOS it cannot directly call the virtual memory under XP, thanks
Sorry, OP, I misread it and thought it was in XP.。。。
Under DOS:
1. Check whether the system provides support for expanded memory. You must make sure the EMM386.EXE command in the CONFIG.SYS file contains the RAM parameter. For the RAM parameter settings, please refer to related articles; I won't go into them here;
2. If the problem still exists, check whether the DOS kernel program is compatible with the other running application programs, and whether some programs are taking up a large amount of conventional memory, and handle them accordingly.
There are two solutions:
1. Remove the DOS=HIGH setting from CONFIG.SYS, withdraw the DOS kernel program from extended memory, and then it should run normally.
2. Change “/DEVICE=C:\DOS\HIMEM.SYS" to “/DEVICE=C:\DOS\HIMEM.SYS/INT15=320". Because the software uses the low end of extended memory, if some other program is resident in this area, the fonts cannot be loaded normally. Use the INT15 parameter to reserve in advance a portion of the traditional extended memory for the system (that is, extended memory not managed by the XMS specification but used directly by INT15). Then both the fonts and the DOS kernel can use extended memory. After this setting, the main memory space available under the software can reach 512KB, about 250KB more than without this setting.
[
Last edited by superadam on 2007-8-15 at 06:01 PM ]