Reply 20 of 24, by Shponglefan
- Rank
- l33t
Did some more testing trying to maximize conventional memory availability.
Unfortunately I'm still running into stability issues using DOSMAX. I'll get random lock-ups when performing basic DOS functions (e.g. DIR, MEM). It's not as frequent as when I was using the PK-X486S50-3. But it's also not consistent so I'm still struggling to determine what the cause is. If anyone has any ideas, I'm all ears.
I also tried using SHELLMAX which seems to work and frees up more conventional RAM. So far the most I've been able to get in a stable configuration is 580k (594,016 bytes).
Here is my current CONFIG.SYS and AUTOEXEC.BAT listings.
CONFIG.SYS
[MENU]
MENUITEM=UMB,DOS with UMB (no EMS)
MENUITEM=EMS,DOS 2MB EMS
MENUITEM=NOEMS,DOS no EMS
MENUITEM=CLEAN,DOS no drivers
MENUDEFAULT=NOEMS,10
[COMMON]
REM ** nothing here **
[UMB]
FILES=30
BUFFERS=20
DOS=UMB
DEVICE=C:\EMS2UMB\EMS2UMB.EXE
DEVICE=C:\VGAFUDGE\VGAFUDGE.EXE
DEVICE=C:\USE!UMBS\USE!UMBS.SYS D000-DFFF
DEVICEHIGH=C:\DOS\SETVER.EXE
REM DEVICE=C:\DOSMAX\DOSMAX.EXE /P:-
SHELL=C:\DOSMAX\SHELLMAX.COM COMMAND.COM /P
[EMS]
FILES=30
BUFFERS=20
DEVICE=C:\VGAFUDGE\VGAFUDGE.EXE
DEVICE=C:\DOS\SETVER.EXE
DEVICE=C:\LTEMM\LTEMM.EXE /p:D000 /i:260 /h:64 /d:5 /f:0
[NOEMS]
FILES=30
BUFFERS=20
DEVICE=C:\VGAFUDGE\VGAFUDGE.EXE
DEVICE=C:\DOS\SETVER.EXE
[CLEAN]
REM ** no drivers **
AUTOEXEC.BAT
@ECHO OFF
PROMPT $p$g
PATH C:\DOS;C:\VSWITCH
SET TEMP=C:\DOS
GOTO %CONFIG%
:UMB
LH C:\VSWITCH\VSRES.COM
LH C:\TLJOYFIX\TLJOYFIX.COM
LH C:\CTMOUSE\CTMOUSE.EXE
GOTO EXIT
:EMS
C:\VSWITCH\VSRES.COM
C:\TLJOYFIX\TLJOYFIX.COM
C:\CTMOUSE\CTMOUSE.EXE
GOTO EXIT
:NOEMS
C:\VSWITCH\VSRES.COM
C:\TLJOYFIX\TLJOYFIX.COM
C:\CTMOUSE\CTMOUSE.EXE
GOTO EXIT
:CLEAN
REM **no drivers**
GOTO EXIT
:EXIT