home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_07 / 8n07095a < prev    next >
Text File  |  1990-06-19  |  518b  |  28 lines

  1.  
  2.  
  3. _TEXT segment word public 'CODE'
  4.  
  5. ; WHICH_MOUSE - Get driver revision, mouse type,
  6. ; and IRQ number
  7. ;
  8. ; entry:       nothing
  9. ;
  10. ; exit:             BH = major revision number in BCD
  11. ;                   BL = minor revision number in BCD
  12. ;                   CH = mouse type 1-5
  13. ;                   CL = IRQ number 0, or 2-5, or 7
  14. ;         
  15. ; assembler:        MASM 4.0+
  16.  
  17. Which_Mouse proc near
  18.      public Which_Mouse
  19.  
  20.      mov ax, 36
  21.      int 33h
  22.      ret
  23.  
  24. Which_Mouse endp
  25.  
  26. _TEXT     ends
  27.  
  28.