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

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat81.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdio.h>
  5. #include <dos.h>
  6.  
  7. void main()
  8. {
  9.    int result;
  10.    int port = 0x61;
  11.  
  12.    result = inp(port);
  13.    printf("▒qÑXñJ¬· 0x%X ⌐╥┼¬¿·ñºª∞ñ╕▓╒¼░ 0x%X\n", port, result);
  14. }
  15.