home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1994 February / psl_9403.zip / psl_9403 / DOS / UT_SYSTM / CLOCK.ZIP / CLKTYP.H < prev    next >
Text File  |  1993-09-06  |  2KB  |  39 lines

  1. /*****************************************************************************/
  2. /*                THE FOLLOWING PROGRAM IS THE SOLE PROPERTY OF              */
  3. /*                               RONALD Q. SMITH                             */
  4. /*             CONTAINING HIS PROPRIETARY CONFIDENTIAL INFORMATION           */
  5. /*                       COPYRIGHT RONALD Q. SMITH 1992                      */
  6. /*****************************************************************************/
  7.  
  8. /* Clock type messages and special handling values.                         */
  9.  
  10.  
  11. /* Clock type descriptive messages.                                         */
  12.  
  13. static char *clock_name[] = {
  14.     "PC/AT and compatibles",
  15.     "(M2) Zenith 18x and Supersport 20",
  16.     "(ZDS) Zenith Data Systems PCs",
  17.     "Memory mapped: SMT No-Slot",
  18.     "Direct Register I/O Bus: AST, Tandy, Vendex",
  19.     "Mitsubishi 8088 PCs: Sperry, Leading Edge",
  20.     "Indirect Register I/O Bus: AST",
  21.     "Complex I/O Bus: AST",
  22.     "Generic I/O Bus: Impossible",
  23.     "Quadram QuadCard, Quadboard",
  24.     "AT&T 6300, 6300 PLUS, 6300 WGS",
  25.     "Hyundai 8088 PC",
  26.     "Multi-I/O Clock"
  27. };
  28.  
  29. /* Clock special handling type.                                             */
  30.  
  31. static int clock_kind[] = {0, 0, 0, 2, 1, 0, 1, 1, 1, 1, 3, 1, 1};
  32.  
  33. /*****************************************************************************/
  34. /*                THE PRECEDING PROGRAM IS THE SOLE PROPERTY OF              */
  35. /*                               RONALD Q. SMITH                             */
  36. /*             CONTAINING HIS PROPRIETARY CONFIDENTIAL INFORMATION           */
  37. /*                       COPYRIGHT RONALD Q. SMITH 1992                      */
  38. /*****************************************************************************/
  39.