Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
903 B

  1. /*++
  2. Copyright (c) 1989, 1990, 1991, 1992, 1993 Microsoft Corporation
  3. Copyright (c) 1992 Logitech Inc.
  4. Module Name:
  5. buscfg.h
  6. Abstract:
  7. These are the machine-dependent configuration constants that are used in
  8. the Bus mouse port driver.
  9. Revision History:
  10. --*/
  11. #ifndef _BUSCFG_
  12. #define _BUSCFG_
  13. //
  14. // Define the interrupt-related configuration constants.
  15. //
  16. #define BUS_INTERFACE_TYPE Isa
  17. #define BUS_INTERRUPT_MODE Latched
  18. #define BUS_INTERRUPT_SHARE FALSE
  19. #define BUS_FLOATING_SAVE FALSE
  20. #define MOUSE_VECTOR 9
  21. #define MOUSE_IRQL MOUSE_VECTOR
  22. #define BUS_PHYSICAL_BASE 0x23C
  23. #define BUS_REGISTER_LENGTH 4
  24. #define BUS_REGISTER_SHARE FALSE
  25. #define BUS_PORT_TYPE CM_RESOURCE_PORT_IO
  26. //
  27. // Define the default number of entries in the input data queue.
  28. //
  29. #define DATA_QUEUE_SIZE 100
  30. #endif // _INPCFG_