home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / windr440.zip / windrive.zip / WinDriver / samples / files.txt
File List  |  2000-03-30  |  3KB  |  62 lines

  1. SAMPLES directory contents:
  2. ---------------------------
  3.  
  4. BASIC_IO  - Sample skeleton driver for a simple ISA card with 
  5.             access to the IO ports.
  6.  
  7. INT_IO    - Sample skeleton driver for an ISA card. The driver 
  8.             implements IO port access and interrupt handler 
  9.             installation.
  10.  
  11. PCI_DIAG  - Sample skeleton driver for a PCI card. The driver 
  12.             implements PCI detection, accessing memory mapped 
  13.             ranges on the card, and interrupt handler installation.
  14.  
  15. PCI_DUMP  - A utility for getting a dump of all the PCI 
  16.             configuration registers of the PCI cards installed.
  17.  
  18. PCI_SCAN  - A utility for getting a list of the PCI cards installed 
  19.             and the resources allocated for each one of them (memory 
  20.             ranges, IO ranges and interrupts).
  21.  
  22. PCI_DMA   - Demonstrates programing a PCI device for Bus master transfers.
  23.  
  24. WDDEBUG   - A utility that turns WinDriver's debug mode on and off,
  25.             and allows viewing the debug messages from the kernel.
  26.             When in debug mode, every IO and memory transfer command
  27.             are checked, making sure they fit in with the card's 
  28.             registered resources. 
  29.             If an illegal command is given, WinDriver
  30.             will ignore the command and show a warning message on
  31.             screen. Debug mode slows down transfer operations, 
  32.             therefore it should be used only in the development 
  33.             process. Running this command without the "on" / "off" 
  34.             parameter will print the version of WinDriver installed.
  35.  
  36. WDREG     - Registers/Unregisters WinDriver in the Windows registery. 
  37.             To install WinDriver on a new computer, 
  38.             copy WINDRVR.VXD file to C:\WIN95\SYSTEM\VMM32 (Win95), or
  39.             copy WINDRVR.SYS file to C:\WINNT\SYSTEM32\DRIVERS (WinNT). 
  40.             After copying WinDriver to the drivers directory, add 
  41.             WinDriver to the list of Device Drivers Windows loads on 
  42.             boot by running "WDREG.EXE install". To install WinDriver 
  43.             from within your own application, add the "wdreg" source 
  44.             to your own installation code.
  45.  
  46. ISAPNP_SCAN  - A utility for getting a list of the ISA PnP cards 
  47.             installed and the resources allocated for each one 
  48.             of them (memory ranges, IO ranges and interrupts). 
  49.  
  50. SPEAKER   - Demonstrates accessing IO ports. This sample programs the 
  51.             motherboard's timer that is connected to the speaker, to
  52.             generate tones.
  53.  
  54. SPEAKER_GUI - A Win32 GUI application that demonstrates using WinDriver 
  55.             in a GUI application. This is the GUI version of the speaker
  56.             sample.
  57.  
  58. CMOS      - This sample reads the CMOS date and time.
  59.  
  60. SHARED    - Shared source code used by sample applications.
  61.  
  62.