home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 202.img / SCO386N2.TD0 / usr / sys / io / mousconf.asm < prev    next >
Encoding:
Assembly Source File  |  1988-08-30  |  973 b   |  53 lines

  1. ;
  2. ;    %Z% %M% %I% %D% %Q%
  3. ;
  4. ;    Copyright (C) The Santa Cruz Operation, 1988.
  5. ;    This Module contains Proprietary Information of
  6. ;    The Santa Cruz Operation and should be treated as Confidential.
  7. ;
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. ;
  15. ;    Configurable parameters for the Busmouse or InPort driver
  16. ;
  17. ;    If parameter is not initialized, the default for the type of
  18. ;    machine will be used. The base address and interrupt vector
  19. ;    will override the default if initialized. 
  20. ;
  21. ;    Defaults interrupt vector is 5.
  22. ;    Default base address by type is:
  23. ;        Type InPort:    0x23c
  24. ;        Type busmouse:    0x23c
  25. ;
  26.  
  27. ifdef M_I386
  28.     .386p
  29. endif
  30.     name    mousconfig
  31.  
  32. DGROUP    group    _DATA
  33. ifdef M_I386
  34. _DATA    segment    byte use32 public    'DATA'
  35. else
  36. _DATA    segment    byte public    'DATA'
  37. endif
  38.  
  39. ; DO NOT change the order or format of the following lines
  40. MOUSINT        equ    5    ; @PARM1
  41. MOUSBASE    equ    0H    ; @PARM2
  42.  
  43.     public    _mousint
  44. _mousint    dw    MOUSINT        ; LOGICAL interrupt vector number
  45.     public    _mousbase
  46. _mousbase    dw    MOUSBASE    ; i/o base address 
  47.  
  48. _DATA    ends
  49.  
  50.  
  51.  
  52.     end
  53.