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

  1. /*    OUT(port, data) -- outputs data to port
  2.  
  3.     Copyright (c) 1983  by  JMI Software Consultants, Inc.
  4.  */
  5.  
  6. #include "acom.h"
  7.  
  8. VOID OUT(port, data)
  9.     BYTES port;
  10.     INT data;
  11.     {
  12.     outp(port, data);
  13.     }
  14.