Posted by Stuart Toomer on December 29, 2002 at 00:49:08:
In Reply to: Re: Out of memory posted by Marook on December 28, 2002 at 21:35:47:
Try the following. Note the ; at the beginning of a line comments it out. Commenting-out MSCDEX.EXE will knock-out your CD-ROM drive, but surely this is not needed for CCS64? Also, commenting-out KEYB.COM will make your keyboard behave perhaps strangely, since it won't be German anymore. Note the DEVICEHIGH in the EMM386.EXE line, since you have already loaded HIMEM.SYS before, you can more device drivers etc into higher memory. I have added the DOS=HIGH,UMB line, which is better than the two individual lines. Try this for more Conventional Memory (0 - 640 Kb).
AUTOEXEC.BAT:
----------------------------------------
; LH A:\DOS\MSCDEX.EXE /D:MSCD000 /M:10 /L:X
; LH SMARTDRV c+ a+ 32768
----------------------------------------
CONFIG.SYS :
----------------------------------------
; INSTALLHIGH=\DOS\KEYB.COM GR,,\DOS\KEYBOARD.SYS
DEVICE=\DOS\HIMEM.SYS /TESTMEM:OFF
DEVICEHIGH=\DOS\EMM386.EXE RAM
; BUFFERS=10,0
; FILES=10
; DOS=UMB
; LASTDRIVE=Z
; FCBS=4,0
; DOS=HIGH
; STACKS=9,256
DOS=HIGH,UMB
Hopefully that should improve matters.
: I tried many things but nothing works...here my AUTOEXEC.BAT & CONFIG.SYS
: ----------------------------------------
: LH A:\DOS\MSCDEX.EXE /D:MSCD000 /M:10 /L:X
: LH SMARTDRV c+ a+ 32768
: ----------------------------------------
: CONFIG.SYS :
: INSTALLHIGH=\DOS\KEYB.COM GR,,\DOS\KEYBOARD.SYS
: DEVICE=\DOS\HIMEM.SYS /TESTMEM:OFF
: DEVICE=\DOS\EMM386.EXE RAM
: BUFFERS=10,0
: FILES=10
: DOS=UMB
: LASTDRIVE=Z
: FCBS=4,0
: DOS=HIGH
: STACKS=9,256
: any ideas ?
: My idea is to create a bootable CD with sound-driver for creative soundcards and CCS64. So you can boot into a C64 and play games on any machine without installing some stuff.