home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / textinfo / alltips.arj / 1605.TXT < prev    next >
Encoding:
Text File  |  1991-11-26  |  2.3 KB  |  69 lines

  1. Document 1605
  2. DESQVIEW
  3.  
  4. Initials:
  5.     MDC
  6.     11/2/91
  7.     DRDOS 6.0
  8.  
  9. Keywords:
  10.     DESQVIEW
  11.     QEMM386.SYS
  12.     HIDOS.SYS
  13.     HMA
  14.     XMS
  15.     EMS
  16.     MEMORY
  17.  
  18. Description:
  19.     DesqView is a multi-tasking DOS based program that relies on very
  20.     specific uses of system memory.  Specifically, it accomplishes its'
  21.         multi-tasking by bank-switching applications in and out of
  22.         conventional memory (much like Concurrent DOS XM) and can use XMS
  23.         UMB's (Upper memory blocks) and the HMA (High Memory Area) for
  24.         storing its' own program code and data.  For maximum performance of
  25.         DesqView under DRDOS 6.0, one should use QEMM386.SYS instead of
  26.         EMM386.SYS and one should make sure that nothing from DRDOS is taking
  27.         control of the A20 line (that is, using the HMA.)
  28.  
  29.     QEMM386.SYS should be used instead of EMM386.SYS, because the LIM 
  30.         driver which is a part of QEMM386.SYS has been enhanced for DesqView
  31.         multi-tasking in conventional memory.
  32.  
  33.     HIDOS.SYS can be used along with QEMM386.SYS (as with DRDOS 5.0) to 
  34.     relocate the operating system, but, unlike DRDOS 5.0, it takes more 
  35.         work than just using the /BDOS=AUTO switch to keep DRDOS 6.0 out of
  36.         the HMA.  To keep DRDOS 6.0 out of the HMA for DesqView:
  37.  
  38.  
  39.     1)  Make sure that the /MH option is not used on any of the DRDOS 
  40.     6.0 commands that support it.  This includes SHELL and SHARE.
  41.  
  42.         2)  Make sure that the HIBUFFERS command is not used in the
  43.         CONFIG.SYS file.  This command will use the HMA even if the Kernel
  44.         is not put there with /BDOS=FFFF.
  45.  
  46.     3)  Make sure that the /BDOS option reads: /BDOS=AUTO.
  47.  
  48.  
  49.     (NOTE: If one is unsure if the HMA is being allocated to DRDOS 6.0
  50.         instead of DesqView, one can use MEM /F before starting DesqView.
  51.         This command will display an empty box if DRDOS 6.0 is not using the
  52.         HMA.)
  53.  
  54. Example:
  55.     Here is an example CONFIG.SYS that will work properly with DesqView:
  56.  
  57.     SHELL=C:\DRDOS\COMMAND.COM C:\DRDOS6 /P /MU /E:512
  58.     BREAK=ON
  59.     BUFFERS=5
  60.     FILES=30
  61.     LASTDRIVE=M
  62.     HISTORY=ON, 256, ON, OFF, OFF
  63.     DEVICE=C:\QEMM60\QEMM386.SYS R:2 NOVIDEOFILL RAM ROM ST:F XST=F000
  64.     DEVICE=C:\DRDOS\HIDOS.SYS /B=AUTO
  65.     DEVICE=C:\QEMM60\LOADHI.SYS /R:3 C:\DRDOS\PCKWIN.SYS
  66.     DEVICE=C:\QEMM60\LOADHI.SYS /R:1 C:\MOUSE\MOUSE.SYS
  67.     DEVICE=C:\SSTORDRV.SYS
  68.     HIDOS=ON
  69.