home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / INP.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-21  |  195 b   |  13 lines

  1. /*    INP(port) -- input a byte from port
  2.  
  3.     Copyright (c) 1983  by  JMI Software Consultants, Inc.
  4.  */
  5.  
  6. #include "acom.h"
  7.  
  8. INT BINP(port)
  9.     BYTES port;
  10.     {
  11.     return (inp(port) & 0xff);
  12.     }
  13.