home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / misc_programming / batnmore.z!p / CONFIG.SYS < prev    next >
Text File  |  1992-11-15  |  2KB  |  68 lines

  1. REM This batch file is Freeware, free to use and redistribute unmodified
  2. REM Jouni Miettunen * jon@stekt.oulu.fi * Oulu * Finland * Europe * 1992
  3. REM Timestamp 15-Nov-1992
  4.  
  5. REM A little speed up, but might cause some trouble..
  6. REM Let DOS check ctrl-c or ctrl-break only when accessing standard device.
  7. REM
  8. break=off
  9.  
  10. REM Load himem.sys into conventional memory. Provides 64K High Memory Area.
  11. REM
  12. device=c:\dos\himem.sys
  13.  
  14. REM Load DOS into High Memory Area.
  15. REM dos=high,umb
  16. REM
  17. dos=high
  18.  
  19. REM Set up local date, time and currency formats.
  20. REM
  21. country=358,437,c:\dos\country.sys
  22.  
  23. REM Load ansi.sys clone and mouse driver.
  24. REM
  25. devicehigh=c:\etc\nnansi.com
  26. devicehigh=c:\dos\mouse.sys /Y >nul
  27.  
  28. REM Max number of File Control Blocks that can be opened at same time.
  29. REM Needed only for DOS 1.x programs. Default 4
  30. REM
  31. fcbs=1
  32.  
  33. REM Maximum number of files (=file handles) open at the same time. Default 8.
  34. REM Each file handle requires 48 bytes of memory. 20 * 48 = 960 bytes.
  35. REM
  36. files=20
  37.  
  38. REM Number of DOS disk buffers on system, optionally a secondary cache.
  39. REM Default 15 buffers (640K RAM) and 1 sector in single I/O operation.
  40. REM 20 buffers for 40M HD, 30-80, 40-120, etc. 1 buffer takes about 532 bytes.
  41. REM buffers=20
  42. REM If you use disk caching program, don't use this secondary caching option.
  43. REM
  44. buffers=20,8
  45.  
  46. REM Last valid drive letter, about 100 bytes per letter.
  47. REM I have HD as one c: drive, d: is ramdrive for tmp files
  48. REM
  49. lastdrive=d
  50.  
  51. REM Number of internal stacks for system hardware interrupts, not needed.
  52. REM If you get "Fatal: Internal Stack Failure, System Halted" remove this.
  53. REM Default: number of stacks = 9, size in bytes = 128
  54. REM
  55. stacks=0,0
  56.  
  57. REM Create RAM drive
  58. REM ramdrive: disksize sectors entries /extended memory
  59. devicehigh=c:\dos\ramdrive.sys 223 256 32 /e
  60.  
  61. REM Name and path for command processor with settings:
  62. REM c:\4dos is path for COMSPEC variable
  63. REM /e:xxxx reserve xxxx bytes for environmental memory. Default 256 bytes
  64. REM /f (undocumented DOS 5), automatically "fail" whenever *drive* error occurs
  65. REM /p make command processor permanent (== disable "exit" command)
  66. REM
  67. shell=c:\4dos\4dos.com c:\4dos /E:1536 /f /p
  68.