home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT17.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-14  |  493 b   |  19 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat17.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <bios.h>
  6. #define MATH_COPROCESSOR 0x0002
  7.  
  8. void main()
  9. {
  10.  unsigned hardware;
  11.  hardware = _bios_equiplist();
  12.  if(hardware & MATH_COPROCESSOR)
  13.    printf("ñwªw╕╦ñ@¡╙╝╞╛╟╗▓ºU╣B║Γ╛╣.\n");
  14.  else
  15.    printf("Ñ╝ªw╕╦ñ@¡╙╝╞╛╟╗▓ºU╣B║Γ╛╣.\n");
  16. }
  17.  
  18.  
  19.