home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l291 / 3.ddi / SYSTEM.PR$ / SYSTEM.bin
Encoding:
Text File  |  1990-11-05  |  1.3 KB  |  37 lines

  1.  
  2. Single Screen Debugging with CVW 3.05:
  3.  
  4.     .\VDDxGA    virtual screen device drivers
  5.     .\VCV        virtual "CodeView" device driver
  6.  
  7. Together, these device drivers allow CVW to work in "single-screen
  8. mode" on a 386 machine.  The VCV driver is the main driver that
  9. makes this happen.  Via the COMM module (in ..\COMM.C), the VCV
  10. driver can be called to:
  11.  
  12.     Go into text mode
  13.     Go back to graphics mode
  14.     Get a video memory selector
  15.     Move the cursor
  16.     Write to the display (CodeView doesn't use this call)
  17.  
  18. The VCV driver works by putting Windows into "Message Mode".  Message
  19. Mode is a special Windows mode that puts the screen, keyboard and
  20. mouse drivers in a special text mode state.  This special state is
  21. used by Windows, for example, when putting up messages as the user
  22. switches between virtual machines (by using Alt-Tab).  When in message
  23. mode, the underlying VM (e.g. its BIOS data area) is not aware that
  24. the video hardware is in text mode.  When message mode is left, the
  25. screen is restored to the previous video state.  This makes message
  26. mode ideal for CVW.
  27.  
  28. Typically, these files are copied into the WINDOWS\SYSTEM directory,
  29. and WINDOWS\SYSTEM.INI is modified to use these:
  30.  
  31.     change:
  32.         display=*vddvga
  33.  
  34.     to:
  35.         display=system\vddvga.386
  36.         device=system\vcv.386
  37.