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.

46 lines
1.0 KiB

  1. /*/****************************************************************************
  2. * name: GetMGAMctlwtst
  3. *
  4. * description: Return the appropriate mctlwtst value according to the
  5. * current board configuration.
  6. *
  7. * designed: Bart Simpson, february 15, 1993
  8. * last modified: $Author: bleblanc $, $Date: 94/05/10 12:00:31 $
  9. *
  10. * version: $Id: MCTLWTST.C 1.4 94/05/10 12:00:31 bleblanc Exp $
  11. *
  12. * parameters: DWORD DST0, DWORD DST1
  13. * modifies: -
  14. * calls: -
  15. * returns: DWORD mctlwtst
  16. ******************************************************************************/
  17. #include "switches.h"
  18. #include "g3dstd.h"
  19. #include "caddi.h"
  20. #include "def.h"
  21. #include "mga.h"
  22. #include "global.h"
  23. #include "proto.h"
  24. #ifdef WINDOWS_NT
  25. #if defined(ALLOC_PRAGMA)
  26. #pragma alloc_text(PAGE,GetMGAMctlwtst)
  27. #endif
  28. #if defined(ALLOC_PRAGMA)
  29. #pragma data_seg("PAGE")
  30. #endif
  31. #endif /* #ifdef WINDOWS_NT */
  32. DWORD GetMGAMctlwtst(DWORD DST0, DWORD DST1)
  33. {
  34. DWORD Value;
  35. Value = 0xc4001110; /*** 80 ns. ***/
  36. return (Value);
  37. }