home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / MSMOUSE2.ZIP / UTILS.ZIP / README.TXT < prev   
Encoding:
Text File  |  1989-02-10  |  2.9 KB  |  73 lines

  1. Contents of the \UTILS directory:
  2.  
  3. README.TXT   - This file
  4.  
  5. BEFUNC.BAS   - Interpreted BASIC source code library for EGA hardware
  6.                register manipulations
  7. BMFUNC.BAS   - Interpreted BASIC source code library for Mouse calls
  8.  
  9. EGATEST.C    ---
  10. EGATEST.H       |
  11. CEFUNC.H        |
  12. EGATESTC.MAK    |
  13. EGATESTL.MAK    |  Demonstrates EGA register interface programming
  14. EGATESTM.MAK    |
  15. EGATESTS.MAK    |
  16. CEFUNCC.LIB     |
  17. CEFUNCL.LIB     |
  18. CEFUNCM.LIB     |
  19. CEFUNCS.LIB  ---
  20.  
  21.  
  22. MOUSETST.C   ---
  23. MENU.C          |
  24. MOUSUTIL.C      |
  25. FUNCSUBS.ASM    |
  26. KB.ASM          |
  27. MOUSETST.H      |
  28. CMFUNC.H        |  Interactively demonstrates mouse programming calls
  29. ASM.INC         |
  30. MOUSTSTC.MAK    |
  31. MOUSTSTL.MAK    |
  32. MOUSTSTM.MAK    |
  33. MOUSTSTS.MAK    |
  34. CMFUNCC.LIB     |
  35. CMFUNCL.LIB     |
  36. CMFUNCM.LIB     |
  37. CMFUNCS.LIB  ---
  38.  
  39. EGA.COM --------|  Device driver for EGA, VGA, and 8514/A video adapters.
  40. EGA.SYS --------|  You install EGA.SYS by using a DEVICE= command in
  41.                    your CONFIG.SYS file; you install EGA.COM by typing
  42.                    EGA at the system prompt. The difference between the
  43.                    two is that EGA.COM can be disabled by typing EGA OFF
  44.                    at the system prompt. Installing this driver replaces
  45.                    the shadow register support built into the mouse driver,
  46.                    providing better EGA, VGA, and 8514/A support than the
  47.                    default support built into the mouse driver. You should
  48.                    install the EGA device driver before you install the
  49.                    mouse driver. If you experience problems running any
  50.                    of the EGA sample programs on these disks on an EGA,
  51.                    VGA, or 8514/A video adapter, try installing the EGA
  52.                    device driver and running the program again.
  53.  
  54. Two major demonstration programs are presented in this directory.
  55. MOUSETST interactively demonstrates most of the mouse functions using
  56. any or all of the video modes.  EGATEST demonstrates EGA Shadow Register
  57. Interface programming.  EGATEST uses many of the concepts and techniques
  58. described in Chapter 10.
  59.  
  60. Both programs are provided with MAKE files and libraries for compiling
  61. and linking using your choice of memory models.  Notice the last letter
  62. in each filename.  The letters S, C, M, and L refer to the small, compact,
  63. medium, and large memeory models.  Use the MAKE file with the appropriate
  64. letter to build the desired program.  For example, to build the
  65. MOUSETST.EXE program using the medium memory model, type MAKE MOUSTSTM.MAK
  66. at the DOS prompt.  This MAKE file will automatically select the
  67. corresponding medium model library.
  68.  
  69. Note:  To rebuild one of these programs using a different memory
  70.        model, first delete all *.OBJ files from the \UTILS directory.
  71.        This ensures that the program will be recompiled by the MAKE file.
  72.  
  73.